Document.ActiveWritingStyle 属性
获取文档中指定语言的编写样式。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)
语法
声明
ReadOnly Property ActiveWritingStyle As Document_ActiveWritingStyleType
Get
Document_ActiveWritingStyleType ActiveWritingStyle { get; }
属性值
类型:Microsoft.Office.Tools.Word.Document_ActiveWritingStyleType
一个为文档中的指定语言指定编写样式的字符串。
备注
ActiveWritingStyle 属性旨在与下面的参数一起使用。
Parameter |
说明 |
---|---|
LanguageID |
WdLanguageID 的值之一,用于指定要在指定的文档中为其设置编写样式的语言。 |
如果使用 ActiveWritingStyle 属性时没有指定参数,则会从代码返回一个不适合直接使用的 Document_ActiveWritingStyleType 对象。
若要获取可用编写样式的列表,请使用 WritingStyleList 属性。
示例
下面的代码示例显示当前选定内容中文本的编写样式。 此示例针对的是应用程序级外接程序。
Private Sub DocumentActiveWritingStyle()
Dim vstoDoc As Document = Globals.Factory.GetVstoObject(Me.Application.ActiveDocument)
System.Windows.Forms.MessageBox.Show(vstoDoc.ActiveWritingStyle( _
vstoDoc.Application.Selection. _
LanguageID).ToString())
End Sub
private void DocumentActiveWritingStyle()
{
Document vstoDoc = Globals.Factory.GetVstoObject(this.Application.ActiveDocument);
System.Windows.Forms.MessageBox.Show(vstoDoc.ActiveWritingStyle[vstoDoc.Application.
Selection.LanguageID].ToString());
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。