ComponentOne Input for WinForms
Orientation
Using the C1Input Controls > C1Input Controls > C1RangeSlider Control Overview > C1RangeSlider Features > Orientation

C1RangeSlider control can be displayed Horizontally or Vertically, using Orientation property. By default, the control is oriented horizontally.

You can easily change the orientation through Orientation property in Properties pane, or through code:

To write code in Visual Basic

Visual Basic
Copy Code
Me.c1RangeSlider1.Orientation = Orientation.Vertical

To write code in C#

C#
Copy Code
this.c1RangeSlider1.Orientation = Orientation.Vertical;

 

See Also