<ST_PathFillMode>
(Path Fill Mode)
This simple type specifies the manner in which a path should be filled. The lightening and darkening of a path allow for certain parts of the shape to be colored lighter of darker depending on user preference.
This simple type's contents are a restriction of the XML Schema token datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
This specifies that the corresponding path should have a darker shaded color applied to it’s fill. |
|
This specifies that the corresponding path should have a slightly darker shaded color applied to it’s fill. |
|
This specifies that the corresponding path should have a lightly shaded color applied to it’s fill. |
|
This specifies that the corresponding path should have a slightly lighter shaded color applied to it’s fill. |
|
This specifies that the corresponding path should have no fill. |
|
This specifies that the corresponding path should have a normally shaded color applied to it’s fill. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_PathFillMode">
<restriction base="xsd:token">
<enumeration value="none"/>
<enumeration value="norm"/>
<enumeration value="lighten"/>
<enumeration value="lightenLess"/>
<enumeration value="darken"/>
<enumeration value="darkenLess"/>
</restriction>
</simpleType>