Contents Index Topic Contents | ||
Previous Topic: IHTMLMarqueeElement::put_loop Next Topic: IHTMLMarqueeElement::put_vspace |
IHTMLMarqueeElement::get_loop
HRESULT get_loop( long *p );Retrieves the number of times the MARQUEE will loop.
- Returns S_OK if successful, or an error value otherwise.
- p
- Address of a variable that receives the number of times to loop. This parameter receives -1 if the marquee is set to loop continuously.
Below are descriptions on how loop works for some boundary cases.
<BGSOUND src="file:///c:\win95\system\msremind.wav"> once <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP> once <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=> zero times <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=-1> infinitely <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=0> once See also put_loop
IHTMLMarqueeElement::put_loop
HRESULT put_loop( long v );Sets the number of times the MARQUEE should loop.
- Returns S_OK if successful, or an error value otherwise.
- v
- Value specifying the number of times to loop. If this parameter is -1 (infinite), the marquee will loop continuously.
Below are descriptions on how loop works for some boundary cases.
<BGSOUND src="file:///c:\win95\system\msremind.wav"> once <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP> once <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=> zero times <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=-1> infinitely <BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=0> once See also get_loop
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.