[Table of Contents] [docx version]
Error! No text of specified style in document.
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 |
darken (Darken Path Fill) |
This specifies that the corresponding path should have a darker shaded color applied to it’s fill. |
darkenLess (Darken Path Fill Less) |
This specifies that the corresponding path should have a slightly darker shaded color applied to it’s fill. |
lighten (Lighten Path Fill) |
This specifies that the corresponding path should have a lightly shaded color applied to it’s fill. |
lightenLess (Lighten Path Fill Less) |
This specifies that the corresponding path should have a slightly lighter shaded color applied to it’s fill. |
none (No Path Fill) |
This specifies that the corresponding path should have no fill. |
norm (Normal Path Fill) |
This specifies that the corresponding path should have a normally shaded color applied to it’s fill. |
Referenced By |
path@fill (§5.1.11.15) |
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>