Property SLScope.TSLBasicDisplayXAxis.Samples
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: TSLBasicDisplayXAxis
Contents |
Syntax
Delphi:
property Samples : Integer read FSamples;
C++ Builder:
__property int Samples = { read=FSamples };
Summary
Count of samples shown for each channel.
Description
Use this property to specify the count of samples shown for
each channel.
Delphi example:
SLScope1.XAxis.Samples := 2000;
C++ Builder example:
SLScope1->XAxis->Samples = 2000;
Visual C++(MFC/Win32) example:
SLScope1.XAxis.Samples = 2000;
Visual C++/CLI example:
scope1->XAxis->Samples = 2000;
C# example:
scope1.XAxis.Samples = 2000;
VB example:
Scope1.XAxis.Samples = 2000