DDElement Object

SharePoint Designer Developer Reference

Represents a DD 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 DD elements in a document. Use the Item method to return a DDElement 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.

Visual Basic for Applications
Dim objDescr As DDElement
Set objDescr = ActiveDocument.all.tags("dd").Item(0)

See Also