Property SLLogger.TSLLogger.Ceiling
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: TSLLogger
Contents |
Syntax
Delphi:
property Ceiling : Int64 read FCeiling write SetCeiling;
C++ Builder:
__property __int64 Ceiling = { read=FCeiling, write=SetCeiling };
Summary
The maximum number of samples to be recorded.
Description
Specifies the maximum amount of samples to be stored in the
file. If set to zero there will not be ceiling.
Delphi example:
SLLogger1.Ceiling := 20000;
C++ Builder example:
SLLogger1->Ceiling = 20000;
Visual C++(MFC) example:
SLLogger1.Ceiling = 20000;
Visual C++/CLI example:
logger1->Ceiling = 20000;
C# example:
logger1.Ceiling = 20000;
VB example:
Logger1.Ceiling = 20000