Bookmark.LanguageIDOther Property

Gets or sets the language for the Bookmark control.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Syntax

'Declaration
Property LanguageIDOther As WdLanguageID
WdLanguageID LanguageIDOther { get; set; }

Property Value

Type: WdLanguageID
One of the WdLanguageID values.

Remarks

This is the recommended way to return or set the language of Latin text in a document created in a right-to-left language version of Microsoft Office Word.

Examples

The following code example adds a Bookmark control to the first paragraph and sets the LanguageIDOther property to French.

This example is for a document-level customization.

Private Sub BookmarkLanguageIDOther()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
    Bookmark1.LanguageIDOther = Word.WdLanguageID.wdFrench
    MessageBox.Show("Bookmark1's LanguageID is set to " & _
        Bookmark1.LanguageID.ToString)

End Sub
private void BookmarkLanguageIDOther()
{
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");

    bookmark1.LanguageIDOther = Word.WdLanguageID.wdFrench;
    MessageBox.Show("Bookmark1's LanguageID is set to " +
        bookmark1.LanguageID.ToString());
}

.NET Framework Security

See Also

Reference

Bookmark Interface

Microsoft.Office.Tools.Word Namespace