Bookmark.LanguageIDOther 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 the language for the Bookmark control.
public:
property Microsoft::Office::Interop::Word::WdLanguageID LanguageIDOther { Microsoft::Office::Interop::Word::WdLanguageID get(); void set(Microsoft::Office::Interop::Word::WdLanguageID value); };
public Microsoft.Office.Interop.Word.WdLanguageID LanguageIDOther { get; set; }
member this.LanguageIDOther : Microsoft.Office.Interop.Word.WdLanguageID with get, set
Public Property LanguageIDOther 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 LanguageIDOther property to French.
This example is for a document-level customization.
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());
}
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
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.