Partager via


XmlMappedRange.Orientation, propriété

Obtient ou définit une valeur qui spécifie l'orientation du texte.

Espace de noms :  Microsoft.Office.Tools.Excel
Assembly :  Microsoft.Office.Tools.Excel (dans Microsoft.Office.Tools.Excel.dll)

Syntaxe

'Déclaration
Property Orientation As Object
Object Orientation { get; set; }

Valeur de propriété

Type : System.Object
Entier compris entre -90 et 90 degrés qui spécifie l'orientation de texte.

Exemples

L'exemple de code suivant utilise la propriété Orientation pour afficher un texte vertical dans XmlMappedRange. Cet exemple de code suppose que la feuille de calcul active contient un contrôle XmlMappedRange nommé 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;
}

Sécurité .NET Framework

Voir aussi

Référence

XmlMappedRange Interface

Microsoft.Office.Tools.Excel, espace de noms