FPHTMLFrameSetSite Object

Microsoft FrontPage Visual Basic

FPHTMLFrameSetSite Object

FPHTMLFrameSetSite Multiple objects

Represents a FRAMESET element in an HTML document. See also the IHTMLFrameSetElement object.

Using the FPHTMLFrameSetSite Object

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

    Dim objFrameSet As FPHTMLFrameSetSite

Set objFrameSet = ActiveDocument.all.tags("frameset").Item(0)