FMX.ExtCtrls.TImageViewer.BitmapScale

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BitmapScale: Single read FBitmapScale write SetBitmapScale stored BitmapScaleStored nodefault;

C++

__property float BitmapScale = {read=FBitmapScale, write=SetBitmapScale, stored=BitmapScaleStored};

Properties

Type Visibility Source Unit Parent
property published
FMX.ExtCtrls.pas
FMX.ExtCtrls.hpp
FMX.ExtCtrls TImageViewer

Description

Represents the scale of the image.

BitmapScale represents a Single value used to determine the image's size. The Height and Width of the displayed image are calculated by multiplying the original height and width with the BitmapScale value.

Note: The minimum value for BitmapScale is 0.01 and the maximum value is 10. If a value smaller than the minimum value is assigned, then the property is set to the minimum value. Similarly, if a value greater than the maximum value is assigned, then the property is set to the maximum value.

See Also