isStreamed Property
This topic documents a feature of HTML+TIME 2.0, which is obsolete as of Windows Internet Explorer 9.
Gets a Boolean value that indicates if the source of the media object is streamed.
Gets a Boolean value that indicates if the source of the media object is streamed.
Syntax
HTML N/A Scripting [ bisStreamed = ] object.isStreamed
Possible Values
bisStreamed Boolean that receives one of the following values.
false
- Source of media is not streamed.
true
- Source of media is streamed.
The property is read-only. The property has no default value.
Remarks
isStreamed was introduced in Microsoft Internet Explorer 6.
Example
In the following example, the isStreamed property is used to check whether the source of the media object is streamed.
... <t:video id="mp2" src="https://msdn.microsoft.com/workshop/samples/author/behaviors/media/shuttle3.wmv"/> <P> <B>Streaming content</B>: <SPAN class="time" dur="0.1" repeatCount="indefinite" onrepeat="innerText=mp2.isStreamed;"></SPAN> </P> ...
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/behaviors/isStreamed.htm
Applies To
t:ANIMATION, t:AUDIO, t:IMG, t:MEDIA, t:REF, t:VIDEO
See Also