Właściwość DocumentBase.TablesOfAuthoritiesCategories —
Pobiera TablesOfAuthoritiesCategories , która reprezentuje tabeli dostępne kategorie władze dla dokumentu.
Przestrzeń nazw: Microsoft.Office.Tools.Word
Zestaw: Microsoft.Office.Tools.Word.v4.0.Utilities (w Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Składnia
'Deklaracja
Public ReadOnly Property TablesOfAuthoritiesCategories As TablesOfAuthoritiesCategories
public TablesOfAuthoritiesCategories TablesOfAuthoritiesCategories { get; }
Wartość właściwości
Typ: Microsoft.Office.Interop.Word.TablesOfAuthoritiesCategories
A TablesOfAuthoritiesCategories , która reprezentuje tabeli dostępne kategorie władze dla dokumentu.
Przykłady
Poniższy kod wyświetla nazwy wszystkich tabel kategorie władze.Aby wykorzystać ten przykład, należy uruchomić go z klasy ThisDocument w projekcie na poziomie dokumentu.
Private Sub DocumentTablesOfAuthoritiesCategories()
Dim stringBuilder1 As New System.Text.StringBuilder()
Dim category As Word.TableOfAuthoritiesCategory
For Each category In Me.TablesOfAuthoritiesCategories
stringBuilder1.Append(category.Name & ", ")
Next category
stringBuilder1.Remove(stringBuilder1.Length - 2, 2)
stringBuilder1.Append(".")
MessageBox.Show("The names of the table of authorities categories are: " _
& stringBuilder1.ToString())
End Sub
private void DocumentTablesOfAuthoritiesCategories()
{
System.Text.StringBuilder stringBuilder1 =
new System.Text.StringBuilder();
foreach (Word.TableOfAuthoritiesCategory category in
this.TablesOfAuthoritiesCategories)
{
stringBuilder1.Append(category.Name + ", ");
}
stringBuilder1.Remove(stringBuilder1.Length - 2, 2);
stringBuilder1.Append(".");
MessageBox.Show("The names of the table of " +
"authorities categories are: " +
stringBuilder1.ToString());
}
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.