Propriedade NamedRange.Height
Obtém a altura do controle de NamedRange .
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)
Sintaxe
'Declaração
ReadOnly Property Height As Object
Object Height { get; }
Valor de propriedade
Tipo: System.Object
A altura do controle de NamedRange .
Exemplos
O exemplo de código a seguir cria NamedRange e usar as propriedades de Width e de Height para exibir a largura e altura de NamedRange.
Este exemplo é para uma personalização de um documento nível.
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"], "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ável.