Property SLScope.TSLScope.SizeLimit
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: TSLScope
Contents |
Syntax
Delphi:
property SizeLimit : Cardinal read FSizeLimit write SetSizeLimit default 0;
C++ Builder:
__property unsigned int SizeLimit = { read=FSizeLimit, write=SetSizeLimit, default=0 };
Summary
Sets the limit of samples per channel.
Description
Use this property to specify the maximum number of samples
per channel.
Delphi example:
SLScope1.SizeLimit := 1000;
C++ Builder example:
SLScope1->SizeLimit = 1000;
Visual C++(MFC/Win32) example:
SLScope1.SizeLimit = 1000;
Visual C++/CLI example:
scope1->SizeLimit = 1000;
C# example:
scope1.SizeLimit = 1000;
VB example:
Scope1.SizeLimit = 1000