Właściwość DocumentBase.TablesOfAuthorities —
Pobiera TablesOfAuthorities , która reprezentuje wykazów źródeł w dokumencie.
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 TablesOfAuthorities As TablesOfAuthorities
public TablesOfAuthorities TablesOfAuthorities { get; }
Wartość właściwości
Typ: Microsoft.Office.Interop.Word.TablesOfAuthorities
A TablesOfAuthorities , która reprezentuje wykazów źródeł w dokumencie.
Przykłady
Poniższy przykład kodu dodaje wykazu źródeł, który kompiluje odwołań we wszystkich kategoriach na początku dokumentu.Aby wykorzystać ten przykład, należy uruchomić go z ThisDocument klasy w projekcie na poziomie dokumentu.
Private Sub DocumentTablesOfAuthorities()
Me.Paragraphs(1).Range.InsertParagraphAfter()
Dim StartPosition As Object = 0
Dim EndPosition As Object = 0
Dim range1 As Word.Range = Me.Range(StartPosition, EndPosition)
Dim Passim As Object = True
Dim Category As Object = 0
Dim EntrySeparator As Object = ", "
Me.TablesOfAuthorities.Add(range1, Category, , Passim, , EntrySeparator)
End Sub
private void DocumentTablesOfAuthorities()
{
this.Paragraphs[1].Range.InsertParagraphAfter();
object Start = 0;
object End = 0;
Word.Range range1 = this.Range(ref Start, ref End);
object Passim = true;
object Category = 0;
object EntrySeparator = ", ";
this.TablesOfAuthorities.Add(range1, ref Category, ref missing,
ref Passim, ref missing, ref EntrySeparator, ref missing,
ref missing, ref missing, ref missing, ref missing);
}
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 Przy użyciu bibliotek z częściowo zaufanego kodu..