animationeffect OnShowEffect event
Return to Introduction  Previous page  Next page
Applies to
acAnimationEffect component.  

Declaration
property OnShowEffect: TNotifyEvent;  

Description
The OnShowEffect event occurs when the form is about to appear on screen and the component preparing to produce the Open animation effect.  

Example
// Following example demonstrates how to prevent  
// displaying of the effect after first show:  
procedure TRegistrationForm.acAnimationEffect1ShowEffect(Sender: TObject);  
begin  
  acAnimationEffect1.AnimateOnShow := False;  
end;  

See also
OnHideEffect event;  
Open, Close methods.