FMX.MultiResBitmap.TSizeKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TSizeKind = (Custom, Default, Source);

C++

enum class DECLSPEC_DENUM TSizeKind : unsigned char { Custom, Default, Source, skCustom _DEPRECATED_ATTRIBUTE3("Use TSizeKind.Custom")  = 0x0, skDefault _DEPRECATED_ATTRIBUTE3("Use TSizeKind.Default")  = 0x1, skSource _DEPRECATED_ATTRIBUTE3("Use TSizeKind.Source")  = 0x2 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.MultiresBitmap.pas
FMX.MultiResBitmap.hpp
FMX.MultiResBitmap FMX.MultiResBitmap

Description

Defines what size to use when loading the image.

Used by the SizeKind property.

The TSizeKind type defines the following values:

Value Meaning

Custom

The custom Width and Height size parameters are used.

Default

The DefaultSize size parameters are used.

Source

The width and height stored in the image source file are used.

See Also