FPHTMLDTElement Object

Microsoft FrontPage Visual Basic

FPHTMLDTElement Object

FPHTMLDTElement Multiple objects

Represents a DT element in an HTML document. See also the IHTMLDTElement object.

Using the FPHTMLDTElement Object

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

    Dim objTerm As FPHTMLDTElement

Set objTerm = ActiveDocument.all.tags("dt").Item(0)