FMX.Graphics.TWrapMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TWrapMode = (Tile, TileOriginal, TileStretch);

C++

enum class DECLSPEC_DENUM TWrapMode : unsigned int { Tile, TileOriginal, TileStretch };

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

Tile

The image is used repeatedly to tile the area.

TileOriginal

The image is used repeatedly at its original size.

TileStretch

The image is stretched to fit the area.

See Also

Code Examples