FMX.Filter.Effects.TSlideTransitionEffect.SlideAmount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SlideAmount: TPointF read GetSlideAmount write SetSlideAmount;

C++

__property System::Types::TPointF SlideAmount = {read=GetSlideAmount, write=SetSlideAmount};

Properties

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

Description

Specifies the maximum distance that is covered during sliding, for each axis.

SlideAmount is a TPointF value.

The X coordinate of SlideAmount specifies the maximum horizontal distance covered.

The Y coordinate of SlideAmount specifies the maximum vertical distance covered.

Assign SlideAmount a TPointF value with the X and Y coordinates or use the PointF function as follows:

  SlideTransitionEffect1.SlideAmount := PointF(0, 0);

If SlideAmount is not explicitly set, it is considered equal to [150,150].

See Also