FMX.Filter.Effects.TCropEffect.RightBottom
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 | TCropEffect | 
Description
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.
