FPHTMLUListElement Object

Microsoft FrontPage Visual Basic

FPHTMLUListElement Object

FPHTMLUListElement Multiple objects

Represents a UL element in an HTML document. See also the IHTMLUListElement object.

Using the FPHTMLUListElement Object

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

    Dim objList As FPHTMLUListElement

Set objList = ActiveDocument.all.tags("ul").Item(0)