Property SLScope.TSLScope.Vertical
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 Vertical : Boolean read FVertical write SetVertical default False;
C++ Builder:
__property bool Vertical = { read=FVertical, write=SetVertical, default=False };
Summary
Specifies the Scope orientation.
Description
If this property is set to True, the Scope X and Y axes will
be switched, and the scope will appear vertically oriented.
Otherwise the scope will appear horizontal.
Delphi example:
SLScope1.Vertical := True;
C++ Builder example:
SLScope1->Vertical = true;
Visual C++(MFC/Win32) example:
SLScope1.Vertical = true;
Visual C++/CLI example:
scope1->Vertical = true;
C# example:
scope1.Vertical = true;
VB example:
Scope1.Vertical = True