Propriedade XmlMappedRange.RowHeight

Obtém ou define a altura da linha que contém o XmlMappedRange o controle, medido em pontos.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)

Sintaxe

'Declaração
Property RowHeight As Object
    Get
    Set
Object RowHeight { get; set; }

Valor de propriedade

Tipo: System.Object
A altura da linha que contém o XmlMappedRange o controle, medido em pontos.

Exemplos

O seguinte exemplo de código usa a ColumnWidth e RowHeight Propriedades para exibir a largura e altura de um XmlMappedRange. Este exemplo de código pressupõe que a planilha atual contém um XmlMappedRange chamado CustomerLastNameCell.

Private Sub DisplayColumnAndRowSizes()
    MsgBox("CustomerLastNameCell is  " & _
        Me.CustomerLastNameCell.ColumnWidth & _
        " characters wide and " & Me.CustomerLastNameCell.RowHeight & _
        " points high.")
End Sub
private void DisplayColumnAndRowSizes()
{
    MessageBox.Show("CustomerLastNameCell is  " +
    this.CustomerLastNameCell.ColumnWidth + " characters wide and " +
    this.CustomerLastNameCell.RowHeight + " points high.");
}

Segurança do .NET Framework

Consulte também

Referência

XmlMappedRange Interface

Namespace Microsoft.Office.Tools.Excel