Click to return to the Reusing Browser Technology home page    
IHTMLInputElement::get_in...     IHTMLInputElement::get_lo...     IHTMLInputElement Interfa...    
Web Workshop  |  Reusing Browser Technology

IHTMLInputElement::get_loop Method


Retrieves the number of times a video loops when activated.

Syntax

HRESULT get_loop(
    VARIANT *p
);

Parameters

p
Address of a VARIANT structure that specifies the number of times to loop a video or audio file. If this parameter receives -1 (infinite), the video will loop continuously.

Return Value

Returns S_OK if successful, or an error code otherwise.

Remarks

The following are descriptions of how the 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


IHTMLInputElement::put_loop Method


Sets the number of times a video will loop when activated.

Syntax

HRESULT put_loop(
    VARIANT v
);

Parameters

v
VARIANT structure that specifies the number of times to loop. If this parameter is -1 (infinite), the video will loop continuously.

Return Value

Returns S_OK if successful, or an error code otherwise.

Remarks

The following are descriptions of how the 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


Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.