The animation used to show and hide the popup.
Usage
Set_Property(OLECtrlEntID, "OLE.Animation", OptionValue)
Values
OptionValue can be set to one of the following valid options:
Value | Abbr. | Description |
---|---|---|
None | N | No animation, show/hide immediately |
Fade | F | Fade In/Fade Out |
Slide | S | Slide In/Out from Bottom |
Unfold | U | Slide In/Out from Bottom Right corner |
Default: None
Remarks
The Animation property provides a means to customize how the popup appears. The default is "None", which shows and hides the popup immediately without any animation. You may choose between three other animation effects: "Fade", "Slide", and "Unfold".
Use the AnimationDelay property to set the animation timing.
Example
// Fade the popup in/out Set_Property(@Window:".OLE_POPUP", "OLE.Animation", "Fade")