FPHTMLDListElement Object

Microsoft FrontPage Visual Basic

FPHTMLDListElement Object

FPHTMLDListElement Multiple objects

Represents a DL element in an HTML document. See also the IHTMLDListElement object.

Using the FPHTMLDListElement Object

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

    Dim objDef As FPHTMLDListElement

Set objDef = ActiveDocument.all.tags("dl").Item(0)