TileMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes how a TileBrush paints tiles onto an output area.
public enum class TileMode
public enum TileMode
type TileMode =
Public Enum TileMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | The base tile is drawn but not repeated. The remaining area is transparent. |
FlipX | 1 | The same as Tile except that alternate columns of tiles are flipped horizontally. The base tile itself is not flipped. |
FlipY | 2 | The same as Tile except that alternate rows of tiles are flipped vertically. The base tile itself is not flipped. |
FlipXY | 3 | The combination of FlipX and FlipY. The base tile itself is not flipped. |
Tile | 4 | The base tile is drawn and the remaining area is filled by repeating the base tile. The right edge of one tile meets the left edge of the next, and similarly for the bottom and top edges. |
Remarks
The following illustration shows the different tile modes.