Propriedade NamedRange.Height
Obtém a altura do NamedRange de controle.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)
Sintaxe
'Declaração
ReadOnly Property Height As Object
Get
Object Height { get; }
Valor de propriedade
Tipo: System.Object
A altura do NamedRange de controle.
Exemplos
O exemplo de código a seguir cria um NamedRange e, em seguida, usa o Width e Height Propriedades para exibir a largura e altura da NamedRange.
Este exemplo é para uma personalização em nível de documento.
Private heightWidthRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub DisplayHeightAndWidth()
heightWidthRange = Me.Controls.AddNamedRange( _
Me.Range("B4"), "heightWidthRange")
heightWidthRange.Select()
MessageBox.Show("The NamedRange control is " & _
Me.heightWidthRange.Width & " points wide and " & _
Me.heightWidthRange.Height & " points high.")
End Sub
Microsoft.Office.Tools.Excel.NamedRange heightWidthRange;
private void DisplayHeightAndWidth()
{
heightWidthRange = this.Controls.AddNamedRange(
this.Range["B4", missing], "heightWidthRange");
heightWidthRange.Select();
MessageBox.Show("The NamedRange control is " +
this.heightWidthRange.Width + " points wide and " +
this.heightWidthRange.Height + " points high.");
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.