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; only makes images smaller, never larger. This is the default.
  • 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.

See Also