MarqueeElement Object

SharePoint Designer Developer Reference

Represents a MARQUEE 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 the MARQUEE elements in a document. Use the Item method to return a MarqueeElement 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.

Visual Basic for Applications
Dim objMarquee As MarqueeElement
Set objMarquee = ActiveDocument.all.tags("marquee").Item(0)

See Also