FMX.Ani.TAnimation.TriggerInverse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TriggerInverse: TTrigger read FTriggerInverse write SetTriggerInverse;

C++

__property Fmx::Types::TTrigger TriggerInverse = {read=FTriggerInverse, write=SetTriggerInverse};

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.

See Also