Bookmark.LanguageIDFarEast Property

Gets or sets an East Asian language for the Bookmark control.

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

Syntax

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

Property Value

Type: Microsoft.Office.Interop.Word.WdLanguageID
One of the WdLanguageID values.

Remarks

This is the recommended way to return or set the language of East Asian text in a document created in an East Asian version of Microsoft Office Word.

Examples

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

This example is for a document-level customization.

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

    Bookmark1.LanguageIDFarEast = Word.WdLanguageID.wdKorean
    MessageBox.Show("Bookmark1's LanguageID is set to " & _
        Bookmark1.LanguageID.ToString)

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

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

.NET Framework Security

See Also

Reference

Bookmark Interface

Microsoft.Office.Tools.Word Namespace