FMX.ListView.Types.TImageScalingMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TImageScalingMode = (StretchWithAspect, Original, Stretch);

C++

enum class DECLSPEC_DENUM TImageScalingMode : unsigned char { StretchWithAspect, Original, Stretch, smStretchWithAspect _DEPRECATED_ATTRIBUTE3("Use TImageScalingMode.StretchWithAspect")  = 0x0, smOriginal _DEPRECATED_ATTRIBUTE3("Use TImageScalingMode.Original")  = 0x1, smStretch _DEPRECATED_ATTRIBUTE3("Use TImageScalingMode.Stretch")  = 0x2 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.ListView.Types.pas
FMX.ListView.Types.hpp
FMX.ListView.Types FMX.ListView.Types

Description

Enumerates the possible TImageScalingMode types.

The TImageScalingMode can be:

  • StretchWithAspect
  • Original
  • Stretch

See Also