DocumentBase.Indexes プロパティ
文書内のすべての索引を表す Indexes コレクションを取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property Indexes As Indexes
public Indexes Indexes { get; }
プロパティ値
型 : Microsoft.Office.Interop.Word.Indexes
文書内のすべての索引を表す Indexes コレクション。
例
次のコード例では、最初の段落にテキストを追加し、索引のエントリを挿入します。その後、2 番目の段落に索引を追加します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
Private Sub DocumentIndexes()
Me.Paragraphs(1).Range.Text = "This is sample text." & vbLf
Dim entry As Object = Me.Paragraphs(1).Range.Text
Dim headingSeparator As Object = False
Me.Indexes.MarkEntry(Me.Paragraphs(1).Range, entry)
Dim Type As Object = Word.WdIndexType.wdIndexRunin
Me.Indexes.Add(Me.Paragraphs(2).Range, headingSeparator, , Type)
End Sub
private void DocumentIndexes()
{
this.Paragraphs[1].Range.Text = "This is sample text." + "\n";
object entry = this.Paragraphs[1].Range.Text;
object headingSeparator = false;
this.Indexes.MarkEntry(this.Paragraphs[1].Range,
ref entry, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing);
object Type = Word.WdIndexType.wdIndexRunin;
this.Indexes.Add(this.Paragraphs[2].Range,
ref headingSeparator, ref missing, ref Type,
ref missing, ref missing, ref missing,
ref missing);
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。