DocumentBase.StyleSortMethod Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan atau mengatur nilai yang menentukan metode pengurutan untuk digunakan saat mengurutkan gaya di panel tugas Gaya.
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
Nilai Properti
Salah WdStyleSort satu nilai.
Contoh
Contoh kode berikut menampilkan metode pengurutan saat ini untuk panel tugas Gaya . Selanjutnya, jika metode pengurutan saat ini bukan metode pengurutan alfabet, kode menampilkan pesan yang memberi tahu pengguna bahwa metode pengurutan akan dimodifikasi, lalu memodifikasi metode pengurutan ke urutan urutan alfabet. Untuk menggunakan contoh ini, jalankan dari ThisDocument
kelas dalam proyek tingkat dokumen.
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