FPHTMLDDElement Object

Microsoft FrontPage Visual Basic

FPHTMLDDElement Object

FPHTMLDDElement Multiple objects

Represents a DD element in an HTML document. See also the IHTMLDDElement object.

Using the FPHTMLDDElement Object

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

    Dim objDescr As FPHTMLDDElement

Set objDescr = ActiveDocument.all.tags("dd").Item(0)