XmlMappedRange.HorizontalAlignment (Propiedad)
Obtiene o establece la alineación horizontal del control XmlMappedRange.
Espacio de nombres: Microsoft.Office.Tools.Excel
Ensamblado: Microsoft.Office.Tools.Excel (en Microsoft.Office.Tools.Excel.dll)
Sintaxis
'Declaración
Property HorizontalAlignment As Object
Get
Set
Object HorizontalAlignment { get; set; }
Valor de propiedad
Tipo: System.Object
Uno de los valores de XlHAlign.
Comentarios
Algunas de las constantes XlHAlign puede que no estén disponibles, dependiendo de la compatibilidad con idiomas (EE.UU. Inglés (EE.UU.)) que se haya seleccionado o instalado.
Ejemplos
En el siguiente ejemplo de código, se utilizan las propiedades HorizontalAlignment y VerticalAlignment para alinear el contenido de XmlMappedRange abajo a la derecha. En este ejemplo de código se supone que la hoja de cálculo actual contiene un control XmlMappedRange denominado CustomerLastNameCell.
Private Sub AlignBottomRight()
Me.CustomerLastNameCell.HorizontalAlignment = _
Excel.XlHAlign.xlHAlignRight
Me.CustomerLastNameCell.VerticalAlignment = _
Excel.XlVAlign.xlVAlignBottom
Me.CustomerLastNameCell.Value2 = "The contents " & _
"of this cell are aligned to the bottom right."
Me.CustomerLastNameCell.RowHeight = 100
Me.CustomerLastNameCell.ColumnWidth = 75
End Sub
private void AlignBottomRight()
{
this.CustomerLastNameCell.HorizontalAlignment =
Excel.XlHAlign.xlHAlignRight;
this.CustomerLastNameCell.VerticalAlignment =
Excel.XlVAlign.xlVAlignBottom;
this.CustomerLastNameCell.Value2 = "The contents " +
"of this cell are aligned to the bottom right.";
this.CustomerLastNameCell.RowHeight = 100;
this.CustomerLastNameCell.ColumnWidth = 75;
}
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.