<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

<none> (None)

Tiles are not flipped.

<x> (Horizontal)

Tiles are flipped horizontally.

<xy> (Horizontal and Vertical)

Tiles are flipped both horizontally and vertically.

<y> (Vertical)

Tiles are flipped vertically.

Referenced By

<gradFill@flip>5.1.10.33); <tile@flip>5.1.10.58)

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>