Property SLWaterfall.TSLBasicWaterfall.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: TSLBasicWaterfall
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 Waterfall orientation.
Description
If this property is set to True, the Waterfall X and Y axes
will be switched, and the scope will appear vertically
oriented.
Otherwise the scope will appear horizontal.
Delphi example:
SLWaterfall1.Vertical := True;
C++ Builder example:
SLWaterfall1->Vertical = true;
Visual C++(MFC/Win32) example:
SLWaterfall1.Vertical = true;
Visual C++/CLI example:
waterfall1->Vertical = true;
C# example:
waterfall1.Vertical = true;
VB example:
Waterfall1.Vertical = True