hasVisual 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 whether the element can draw on the screen.

Syntax

HTML N/A
Scripting [ bVisual = ] object.hasVisual

Possible Values

bVisual Boolean that receives one of the following values.
false
Default. The element cannot draw on the screen.
true
The element can draw on the screen.

The property is read-only. The property has a default value of false.

Example

The following brief code sample uses an alert message to show the value of the hasVisual property.

<HTML XMLNS:t="urn:schemas-microsoft-com:time">
<HEAD>
<TITLE>hasVisual Property</TITLE>
<?IMPORT namespace="t" implementation="#default#time2">
<STYLE>
    .time{ behavior: url(#default#time2);}
</STYLE>
<SCRIPT>
function doFunction(){
    alert('hasVisual: ' + m1.hasVisual);
}
</SCRIPT>
</HEAD>

<BODY TOPMARGIN=0 LEFTMARGIN=0 BGPROPERTIES="FIXED" BGCOLOR="#FFFFFF"
    LINK="#000000" VLINK="#808080" ALINK="#000000">

<t:media id="m1" begin="0"
    src="/workshop/samples/author/behaviors/media/shuttle3.wmv"
    onmediacomplete="doFunction();" fill="remove"/>

</BODY>
</HTML>

Applies To

t:ANIMATION, t:AUDIO, t:IMG, t:MEDIA, t:REF, t:VIDEO

See Also

Introduction to HTML+TIME