|
|
|
| acAnimationEffect component.
|
| procedure Close;
|
| The Close method draws smooth animation effect which simulate closing of window.
|
| procedure TMainForm.ButtonClick(Sender: TObject);
|
| begin
|
| with TAboutForm.Create(Application) do
|
| try
|
| acAnimationEffect1.Open;
|
| ShowModal;
|
| acAnimationEffect1.Close;
|
| finally
|
| Free;
|
| end;
|
| end;
|
| EffectType property and example of usage of the Close method.
|
| Open method and OnOpenEffect and OnCloseEffect events.
|