次の方法で共有


DocumentBase.TablesOfAuthorities プロパティ

文書の引用文献一覧を表す TablesOfAuthorities コレクションを取得します。

名前空間:  Microsoft.Office.Tools.Word
アセンブリ:  Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)

構文

'宣言
Public ReadOnly Property TablesOfAuthorities As TablesOfAuthorities
public TablesOfAuthorities TablesOfAuthorities { get; }

プロパティ値

型 : Microsoft.Office.Interop.Word.TablesOfAuthorities
文書の引用文献一覧を表す TablesOfAuthorities コレクション。

すべてのカテゴリを対象に、参照されている引用文献の一覧を編集し、文書の先頭に追加するコード例を次に示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。

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

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

DocumentBase クラス

Microsoft.Office.Tools.Word 名前空間