| TileMode Enumeration |
Specifies whether the theme image is a tile that is repeated and how.
Namespace: DigitalRune.Game.UI.RenderingAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax Public Enumeration TileMode
public enum class TileMode
Members
| Member name | Value | Description |
---|
| None | 0 |
The image is not repeated. Only one copy of the image is drawn.
|
| TileX | 1 |
The image is repeated horizontally only.
|
| TileY | 2 |
The image is repeated vertically only.
|
| TileXY | 3 |
The image is repeated both horizontally and vertically.
|
See Also