|
|
|
| acAnimationEffect component.
|
| procedure Open;
|
| The Open method draws smooth animation effect which simulate opening 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 Open method;
|
| Close method and OnOpenEffect and OnCloseEffect events.
|