Bookmark.LanguageIDFarEast Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets an East Asian language for the Bookmark control.
public:
property Microsoft::Office::Interop::Word::WdLanguageID LanguageIDFarEast { Microsoft::Office::Interop::Word::WdLanguageID get(); void set(Microsoft::Office::Interop::Word::WdLanguageID value); };
public Microsoft.Office.Interop.Word.WdLanguageID LanguageIDFarEast { get; set; }
member this.LanguageIDFarEast : Microsoft.Office.Interop.Word.WdLanguageID with get, set
Public Property LanguageIDFarEast As WdLanguageID
Property Value
One of the WdLanguageID values.
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 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());
}
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
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.