Property ALSnapshot.TALSnapshot.SnapShotSize
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:
property SnapShotSize : Integer read GetBufferSize write SetBufferSize default 1024;
C++ Builder:
__property int SnapShotSize = { read=GetBufferSize, write=SetBufferSize, default=1024 };
Summary
The size of snapshot buffer.
Description
Use this property to specify the size of the snapshot buffer.
Delphi example:
ALSnapshot1.SnapShotSize := 2000;
C++ Builder example:
ALSnapshot1->SnapShotSize = 2000;
Visual C++(MFC/Win32) example:
ALSnapshot1.SnapShotSize = 2000;
Visual C++/CLI example:
snapshot1->SnapShotSize = 2000;
C# example:
snapshot1.SnapShotSize = 2000;
VB example:
Snapshot1.SnapShotSize = 2000