FMX.Objects.TPath.WrapMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property WrapMode: TPathWrapMode read FWrapMode write SetWrapMode default 2;

C++

__property WrapMode = {default=2};

Properties

Type Visibility Source Unit Parent
property published
FMX.Objects.pas
FMX.Objects.hpp
FMX.Objects TPath

Description

Specifies whether and how to resize, replicate, and position the graphical path representation for painting the area.

FMX.Objects.TPath.WrapMode inherits from FMX.Objects.TCustomPath.WrapMode. All content below this line refers to FMX.Objects.TCustomPath.WrapMode.

Specifies whether and how to resize, replicate, and position the graphical path representation for painting the area.

The WrapMode property should be one of the constants defined in the TPathWrapMode type:

  • Stretch--stretches the path representation to fill the entire area. Default.
  • Original--keeps the original path size.
  • Fit--resizes the path representation (keeping proportions) to best fit the area.
  • Tile--renders the path representation repeatedly to tile the area.

See Also