FMX.Ani.TAnimation.TriggerInverse
Delphi
property TriggerInverse: TTrigger index TTriggerType.Inverse read GetTrigger write SetTrigger;
C++
__property Fmx::Types::TTrigger TriggerInverse = {read=GetTrigger, write=SetTrigger, index=1};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.Ani.pas FMX.Ani.hpp |
FMX.Ani | TAnimation |
Description
The state of a property of the parent object used to start the inverse of the animation.
TriggerInverse is a string property of type TTrigger. See TTrigger for information about the possible values of Trigger.
TriggerInverse is used to decide when to start the inverse of the animation. For example, if Trigger is set to 'IsMouseOver=true'
and the animation changes the red color of the parent button to blue, there is nothing in the Trigger or its animation to turn the button back to red. If the TriggerInverse string is set to 'IsMouseOver=false'
, the inverse of the animation starts when the mouse leaves the button.