Compartir a través de


XmlMappedRange.Width (Propiedad)

Obtiene el ancho del control XmlMappedRange, expresado en puntos.

Espacio de nombres:  Microsoft.Office.Tools.Excel
Ensamblado:  Microsoft.Office.Tools.Excel (en Microsoft.Office.Tools.Excel.dll)

Sintaxis

'Declaración
ReadOnly Property Width As Object
Object Width { get; }

Valor de propiedad

Tipo: System.Object
Ancho del control XmlMappedRange, expresado en puntos.

Ejemplos

En el siguiente ejemplo de código se utilizan las propiedades Width y Height para mostrar el ancho y alto de un control XmlMappedRange denominado CustomerLastNameCell.En este ejemplo de código se supone que la hoja de cálculo actual contiene un control XmlMappedRange denominado CustomerLastNameCell.

Private Sub DisplayHeightAndWidth()
    MsgBox("CustomerLastNameCell is " & _
        Me.CustomerLastNameCell.Width & _
        " points wide and " & Me.CustomerLastNameCell.Height & _
        " points high.")
End Sub
private void DisplayHeightAndWidth()
{
    MessageBox.Show("CustomerLastNameCell is " +
    this.CustomerLastNameCell.Width + " points wide and " +
    this.CustomerLastNameCell.Height + " points high.");
}

Seguridad de .NET Framework

Vea también

Referencia

XmlMappedRange Interfaz

Microsoft.Office.Tools.Excel (Espacio de nombres)