FMX.Objects.TImage.WrapMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property WrapMode: TImageWrapMode read FWrapMode write SetWrapMode default TImageWrapMode.Fit;

C++

__property TImageWrapMode WrapMode = {read=FWrapMode, write=SetWrapMode, default=1};

Properties

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

Description

Specifies whether and how to resize, replicate, and position the bitmap image for rendering the TImage surface.

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

  • Original displays the image with its original dimensions.
  • Fit provides the best fit, keeping image proportions (the ratio between the width and height) for the TImage rectangle. If needed, the image is scaled down or stretched to best fit the rectangle area. This is the default option.
  • Stretch stretches the image to fill the entire rectangle of the TImage component.
  • Tile tiles the TImage image to cover the entire rectangle of the TImage component.
  • Center centers the image to the rectangle of the TImage component. The image is never resized, regardless the size of the rectangle of the TImage component.
  • Place fits the image into the TImage rectangle. If the width or height of the image is greater than the corresponding dimension of the TImage rectangle, then the image is scaled down keeping image proportions (the ratio between the width and height) to fit in the TImage rectangle. The obtained image is centered in the TImage rectangle. Place only makes images smaller, never larger.

See Also