Document.Indexes Property

Word Developer Reference

Returns an Indexes collection that represents all the indexes in the specified document. Read-only.

Syntax

expression.Indexes

expression   A variable that represents a Document object.

Remarks

For information about returning a single member of a collection, see Returning an Object from a Collection.

Example

This example adds an index at the end of the active document.

Visual Basic for Applications
  Set MyRange = _
    ActiveDocument.Range(Start:=ActiveDocument.Content.End - 1, _
    End:=ActiveDocument.Content.End - 1)
ActiveDocument.Indexes.Add Range:=MyRange, NumberOfColumns:=1, _
    HeadingSeparator:=False

This example inserts an index entry for the selected text.

Visual Basic for Applications
  If Selection.Type = wdSelectionNormal Then
    ActiveDocument.Indexes.MarkEntry Range:=Selection.Range, _
        Entry:=Selection.Range.Text
End If

See Also