IsIndexElement Object

SharePoint Designer Developer Reference

Represents an ISINDEX element in an HTML document.

Interfaces
This object implements the following interfaces

Remarks

Use the tags method to return an ElementCollection collection that represents a collection of all the ISINDEX elements in a document. Use the Item method to return an IsIndexElement object that accesses a specific ISINDEX element, referenced by ordinal number or by the value of the id attribute. The following example accesses the first ISINDEX element in the active document.

Visual Basic for Applications
Dim objIndex As IsIndexElement
Set objIndex = ActiveDocument.all.tags("isindex").Item(0)

See Also