ShadowOK Attribute

Internet Development Index

Determines whether a shadow will be displayed. Read/write VgTriState.

Applies To

Path

Tag Syntax

<v: element shadowok="expression">

Script Syntax

element.shadowok="expression"

expression=element.shadowok

Remarks

If False, the path cannot have a shadow. The default is True. This attribute overrides all other shadow attributes in the parent or Shadow element.

VML Standard Attribute

Example

The shape will not have a shadow.

   <v:shape id="rect01"
   coordorigin="0 0" coordsize="200 200"
   strokecolor="red" fillcolor="green"
   style="top:1;left:1;width:50;height:50">
   <v:shadow on="True" offset="5pt,5pt" color="blue"/>
   <v:path id= "myPath" shadowok="False" v="m 1,1 l 1,200, 200,200, 200,1 x e"/>
   </v:shape>