Specifies how repeated copies of an image are used to tile an area.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPWrapMode = (
wmTile,
wmTileFlipX,
wmTileFlipY,
wmTileFlipXY,
wmClamp
);
|
|
Name
|
Description
|
|
wmClamp
|
Specifies that no tiling takes place.
|
|
wmTile
|
Specifies tiling without flipping.
|
|
wmTileFlipX
|
Species that tiles are flipped horizontally as you move from one tile to the next in a row.
|
|
wmTileFlipXY
|
Specifies that tiles are flipped horizontally as you move along a row and flipped vertically as you move along a column.
|
|
wmTileFlipY
|
Specifies that tiles are flipped vertically as you move from one tile to the next in a column.
|
Top
|