Propriedade XmlMappedRange.Orientation

Obtém ou define um valor que especifica a orientação do texto.

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

Sintaxe

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

Valor de propriedade

Tipo: System.Object
Um inteiro no intervalo -90 a 90 graus que especifica a orientação do texto.

Exemplos

O seguinte exemplo de código usa a Orientation propriedade para exibir texto vertical em um XmlMappedRange. Este exemplo de código pressupõe que a planilha atual contém um XmlMappedRange chamado CustomerLastNameCell.

Private Sub DisplayVerticalText()
    Me.CustomerLastNameCell.Value2 = "This text is vertical."
    Me.CustomerLastNameCell.Orientation = -90
End Sub
private void DisplayVerticalText()
{
    this.CustomerLastNameCell.Value2 = "This text is vertical.";
    this.CustomerLastNameCell.Orientation = -90;
}

Segurança do .NET Framework

Consulte também

Referência

XmlMappedRange Interface

Namespace Microsoft.Office.Tools.Excel