DListElement Object

SharePoint Designer Developer Reference

Represents a DL element in an HTML document.

Interfaces
This object implements the following interfaces

Remarks

Use the tags method to return an ElementCollection collection that represents all the DL elements in a document. Use the Item method to return a DListElement 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.

Visual Basic for Applications
Dim objDef As DListElement
Set objDef = ActiveDocument.all.tags("dl").Item(0)

See Also