FMX.Objects.TPathWrapMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TPathWrapMode = (Original, Fit, Stretch, Tile);

C++

enum class DECLSPEC_DENUM TPathWrapMode : unsigned char { Original, Fit, Stretch, Tile, pwOriginal _DEPRECATED_ATTRIBUTE3("Use TPathWrapMode.Original")  = 0, pwFit _DEPRECATED_ATTRIBUTE3("Use TPathWrapMode.Fit")  = 1, pwStretch _DEPRECATED_ATTRIBUTE3("Use TPathWrapMode.Stretch")  = 2, pwTile _DEPRECATED_ATTRIBUTE3("Use TPathWrapMode.Tile")  = 3 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Objects.pas
FMX.Objects.hpp
FMX.Objects FMX.Objects

Description

Specifies the wrapping mode for rendering path objects.

The TPathWrapMode type defines the following constants:

Constant Meaning

Original

Render the graphical path representation with the original path size specified in the path object.

Fit

Resize the graphical path representation (keeping image proportions--the ratio between the width and height) to best fit the area.

Stretch

Stretch the graphical path representation to fill the entire area.

Tile

Render the graphical path representation repeatedly to tile the area. Render using the original path size specified in the path object.

See Also