Method procedure ALSnapshot.TALSnapshot.TakeSnapshot()
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALSnapshot
Contents |
Syntax
Delphi:
procedure TakeSnapshot();
C++ Builder:
void __fastcall TakeSnapshot();
Visual C++ (MFC):
void TakeSnapshot();
Summary
Requests taking a Snapshot.
Description
Call this method to requests taking a Snapshot of the data by the component.
The snapshot will be taken as soon as there is enough data available.
Delphi example:
ALSnapshot1.TakeSnapshot;
C++ Builder example:
ALSnapshot1->TakeSnapshot();
Visual C++(MFC/Win32) example:
ALSnapshot1.TakeSnapshot();
Visual C++/CLI example:
snapshot1->TakeSnapshot();
C# example:
snapshot1.TakeSnapshot();
VB example:
Snapshot1.TakeSnapshot()