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