Property SLScope.TSLBasicScopeYAxis.Reversed
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: TSLBasicScopeYAxis
Contents |
Syntax
Delphi:
property Reversed : Boolean read FReversed write SetReversed default False;
C++ Builder:
__property bool Reversed = { read=FReversed, write=SetReversed, default=False };
Summary
Specifies reversed Axis.
Description
Use this property to specify that the axis will be plotted in
reverse ( From right to left instead of left to right, or
from bottom to top instead of top to bottom ).
If set to True, the Axis will be reversed.
Delphi example:
SLScope1.YAxis.Reversed := True;
C++ Builder example:
SLScope1->YAxis->Reversed = true;
Visual C++(MFC/Win32) example:
SLScope1.YAxis.Reversed = true;
Visual C++/CLI example:
scope1->YAxis->Reversed = true;
C# example:
scope1.YAxis.Reversed = true;
VB example:
Scope1.YAxis.Reversed = True