FPHTMLMarqueeElement Object

Microsoft FrontPage Visual Basic

FPHTMLMarqueeElement Object

FPHTMLMarqueeElement Multiple objects

Represents a MARQUEE element in an HTML document. See also the IHTMLMarqueeElement object.

Using the FPHTMLMarqueeElement Object

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

    Dim objMarquee As FPHTMLMarqueeElement

Set objMarquee = ActiveDocument.all.tags("marquee").Item(0)