FPHTMLIsIndexElement Object

Microsoft FrontPage Visual Basic

FPHTMLIsIndexElement Object

FPHTMLIsIndexElement Multiple objects

Represents an ISINDEX element in an HTML document. See also the IHTMLIsIndexElement object.

Using the FPHTMLIsIndexElement Object

Use the tags method to return an IHTMLElementCollection collection that represents a collection of all the ISINDEX elements in a document. Use the Item method to return an FPHTMLIsIndexElement 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.

    Dim objIndex As FPHTMLIsIndexElement

Set objIndex = ActiveDocument.all.tags("isindex").Item(0)