Share via


BRElement Object

SharePoint Designer Developer Reference

Represents the BR 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 BR elements in a document. Use the Item method to return an BRElement object that accesses a specific BR element, referenced by ordinal number or by the value of the id attribute. The following example accesses the first BR element in the active document.

Visual Basic for Applications
Dim objBreak As BRElement
Set objBreak = ActiveDocument.all.tags("br").Item(0)

See Also