DocumentBase.StyleSortMethod 属性
获取或设置一个值,该值指定在对**“样式”**任务窗格中的样式进行排序时使用的排序方法。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public Property StyleSortMethod As WdStyleSort
public WdStyleSort StyleSortMethod { get; set; }
属性值
类型:Microsoft.Office.Interop.Word.WdStyleSort
WdStyleSort 值之一。
示例
下面的代码示例将显示**“样式”**任务窗格的当前排序方法。 接下来,如果当前的排序方法不是按字母顺序排序,该代码将显示一条消息,通知用户即将修改排序方法,然后将排序方法修改为按字母顺序排序。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub SetStyleSortOrder()
MessageBox.Show("Current sort method for the styles task pane is: " _
+ Me.StyleSortMethod.ToString())
If Me.StyleSortMethod <> Word.WdStyleSort.wdStyleSortByName Then
MessageBox.Show("Changing sort method to " _
+ Word.WdStyleSort.wdStyleSortByName.ToString() _
+ " to sort styles alphabetically in the styles " _
+ "task pane.")
Me.StyleSortMethod = Word.WdStyleSort.wdStyleSortByName
End If
End Sub
private void SetStyleSortOrder()
{
MessageBox.Show("Current sort method for the styles task pane is: "
+ this.StyleSortMethod.ToString());
if (this.StyleSortMethod != Word.WdStyleSort.wdStyleSortByName)
{
MessageBox.Show("Changing sort method to "
+ Word.WdStyleSort.wdStyleSortByName.ToString()
+ " to sort styles alphabetically in the styles "
+ "task pane.");
this.StyleSortMethod = Word.WdStyleSort.wdStyleSortByName;
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。