loop property
Sets or retrieves the number of times a marquee will play.
Syntax
HRESULT value = object.put_loop( v);HRESULT value = object.get_loop(* p);
Property values
Type: long
Remarks
In each of the following boundary cases, the marquee loops infinitely.
| <marquee scrollamount=30 loop>This is some scrolling text.</marquee> | Loops infinitely. |
| <marquee scrollamount=30 loop=0>This is some scrolling text.</marquee> | Loops infinitely. |
| <marquee scrollamount=30 loop=>This is some scrolling text.</marquee> | Loops infinitely. |
If you set the IHTMLMarqueeElement::loop property to null or 0 in script, a scripting error occurs.
Show: