<ST_TileFlipMode>
(Tile Flip Mode)
This simple type indicates whether/how to flip the contents of a tile region when using it to fill a larger fill region.
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 |
---|---|
|
Tiles are not flipped. |
|
Tiles are flipped horizontally. |
|
Tiles are flipped both horizontally and vertically. |
|
Tiles are flipped vertically. |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TileFlipMode">
<restriction base="xsd:token">
<enumeration value="none"/>
<enumeration value="x"/>
<enumeration value="y"/>
<enumeration value="xy"/>
</restriction>
</simpleType>