GradientShapeOK Attribute

Internet Development Index

Determines whether a gradient path will be made up of repeated concentric paths. Read/write VgTriState.

Applies To

Path

Tag Syntax

<v: element gradientshapeok="expression">

Script Syntax

element.gradientshapeok="expression"

expression=element.gradientshapeok

Remarks

If True, the path will be filled with a concentric gradient fill using the path as the repeated shape of the gradient. The default is False.

VML Standard Attribute

Example

The path will be filled with a concentric gradient fill made up of repeated rectangles.

   <v:shape id="rect01"
   coordorigin="0 0" coordsize="200 200"
   strokecolor="red"
   style="top:1;left:1;width:50;height:50"
   path="m 1,1 l 1,200, 200,200, 200,1 x e">
   <v:path gradientshapeok="True"/>
   </v:shape>