DocumentBase.StyleSortMethod プロパティ

定義

[スタイル] 作業ウィンドウのスタイルを並べ替えるときに使用される並べ替え方法を指定する値を取得または設定します。

public:
 property Microsoft::Office::Interop::Word::WdStyleSort StyleSortMethod { Microsoft::Office::Interop::Word::WdStyleSort get(); void set(Microsoft::Office::Interop::Word::WdStyleSort value); };
public Microsoft.Office.Interop.Word.WdStyleSort StyleSortMethod { get; set; }
member this.StyleSortMethod : Microsoft.Office.Interop.Word.WdStyleSort with get, set
Public Property StyleSortMethod As WdStyleSort

プロパティ値

WdStyleSort 値のいずれか 1 つ。

次のコード例では、[ スタイル ] 作業ウィンドウの現在の並べ替え方法を表示します。 次に、現在の並べ替えメソッドがアルファベット順の並べ替えメソッドでない場合、コードは、並べ替えメソッドが変更されようとしていることをユーザーに通知するメッセージを表示し、並べ替えメソッドをアルファベット順に変更します。 この例を使用するには、ドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。

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;
    }            
}
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

適用対象