HeaderElement Object

SharePoint Designer Developer Reference

Represents headings in an HTML document. Headings are represented using the H1 through H6 elements.

Interfaces
This object implements the following interfaces

Remarks

Use the tags method to return an ElementCollection collection that represents a collection of all the headings of a specified type in a document. For example, use tags("h1") to return a collection of all H1 elements in a document and use tags("h2") to return a collection of all H2 elements in a document.

Use the Item method to return a HeaderElement object that accesses a specific heading element, referenced by ordinal number or by the value of the id attribute. The following example accesses the first H1 element in the active document.

Visual Basic for Applications
Dim objHeading As HeaderElement
Set objHeading = ActiveDocument.all.tags("h1").Item(0)

See Also