FMX.Graphics.TWrapMode
Delphi
TWrapMode = (Tile, TileOriginal, TileStretch);
C++
enum class DECLSPEC_DENUM TWrapMode : unsigned int { Tile, TileOriginal, TileStretch, wmTile _DEPRECATED_ATTRIBUTE3("Use TWrapMode.Tile") = 0x0, wmTileOriginal _DEPRECATED_ATTRIBUTE3("Use TWrapMode.TileOriginal") = 0x1, wmTileStretch _DEPRECATED_ATTRIBUTE3("Use TWrapMode.TileStretch") = 0x2 };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | FMX.Graphics.pas FMX.Graphics.hpp |
FMX.Graphics | FMX.Graphics |
Description
Specifies the wrapping mode for a bitmap.
The TWrapMode type enumerates the possibilities of using an image as the pattern for a brush. The following table lists the values of TWrapMode:
| Value | Meaning |
|---|---|
|
|
The image is used repeatedly to tile the area. |
|
|
The image is used repeatedly at its original size. |
|
|
The image is stretched to fit the area. |
See Also
Code Examples