FMX.Filter.Effects.TFilterCrop.RightBottom

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RightBottom: TPointF read GetRightBottom write SetRightBottom;

C++

__property System::Types::TPointF RightBottom = {read=GetRightBottom, write=SetRightBottom};

Properties

Type Visibility Source Unit Parent
property public
FMX.Filter.Effects.pas
FMX.Filter.Effects.hpp
FMX.Filter.Effects TFilterCrop

Description

FMX.Filter.Effects.TFilterCrop.RightBottom inherits from FMX.Filter.Effects.TCropEffect.RightBottom. All content below this line refers to FMX.Filter.Effects.TCropEffect.RightBottom.

Specifies the right and bottom coordinates of the rectangle for this crop effect.

RightBottom is of type TPointF. Assign RightBottom a TPointF value with the right and bottom coordinates or use the PointF function as follows:

  CropEffect1.RightBottom := PointF(150, 150);

If RightBottom is not explicitly changed, it is considered (150,150). After the object image is cropped, the cropped area is scaled to fit the object boundaries.

CropEffect.png

See Also

Code Examples