<ST_BWMode>
(Black And White Modes)
This simple type specifies the ways in which a shape renders in a black and white context.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Use the |
|
Use black only. |
|
Use shades of gray, except for text and lines, which are black. |
|
Do not use grayscale or black and white. |
|
Use gray and white only. |
|
Use shades of gray only. |
|
Do not display the object when rendering in only black and white. |
|
Use black and white only, no grays. |
|
Use shades of gray only, but invert light and dark grays. |
|
Use light shades of gray only. |
|
Do not show the object. |
|
Use white only. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_BWMode">
<restriction base="xsd:string">
<enumeration value="color"/>
<enumeration value="auto"/>
<enumeration value="grayScale"/>
<enumeration value="lightGrayscale"/>
<enumeration value="inverseGray"/>
<enumeration value="grayOutline"/>
<enumeration value="highContrast"/>
<enumeration value="black"/>
<enumeration value="white"/>
<enumeration value="hide"/>
<enumeration value="undrawn"/>
<enumeration value="blackTextAndLines"/>
</restriction>
</simpleType>