Share via


FrameElement Object

SharePoint Designer Developer Reference

Represents a FRAME element in an HTML document.

Interfaces
This object implements the following interfaces

Remarks

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

Visual Basic for Applications
Dim objFrame As FrameElement
Set objFrame = ActiveDocument.all.tags("frame").Item(0)

See Also