Bookmark.LanguageIDOther Property (2007 System)
Gets or sets the language for the Bookmark control.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public Property LanguageIDOther As WdLanguageID
'Usage
Dim instance As Bookmark
Dim value As WdLanguageID
value = instance.LanguageIDOther
instance.LanguageIDOther = value
[BrowsableAttribute(false)]
public WdLanguageID LanguageIDOther { get; set; }
[BrowsableAttribute(false)]
public:
property WdLanguageID LanguageIDOther {
WdLanguageID get ();
void set (WdLanguageID value);
}
public function get LanguageIDOther () : WdLanguageID
public function set LanguageIDOther (value : WdLanguageID)
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.