Partager via


Bookmark.Orientation, propriété

Obtient ou définit l'orientation du texte d'un contrôle Bookmark lorsque la fonction Orientation du texte est activée.

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

Syntaxe

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

Valeur de propriété

Type : Microsoft.Office.Interop.Word.WdTextOrientation
Une des valeurs de WdTextOrientation.

Notes

Certaines constantes répertoriées ci-dessus peuvent ne pas être disponibles, selon la prise en charge linguistique (anglais U.S. anglais des États-Unis, par exemple) que vous avez sélectionnée ou installée.

Exemples

L'exemple de code suivant ajoute au premier paragraphe un contrôle Bookmark avec du texte et donne à l'orientation du texte du signet la valeur wdTextOrientationVerticalFarEast.

Cet exemple illustre une personnalisation au niveau du document.

Private Sub BookmarkOrientation()

    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")

    Bookmark1.Text = "sample text."
    Bookmark1.Orientation = Word.WdTextOrientation _
        .wdTextOrientationVerticalFarEast

End Sub
private void BookmarkOrientation()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();

    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "sample text.";

    bookmark1.Orientation = Word.WdTextOrientation.wdTextOrientationVerticalFarEast;
}

Sécurité .NET Framework

Voir aussi

Référence

Bookmark Interface

Microsoft.Office.Tools.Word, espace de noms