TrackBar::Orientation Property

 

Gets or sets a value indicating the horizontal or vertical orientation of the track bar.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property Orientation Orientation {
	Orientation get();
	void set(Orientation value);
}

Property Value

Type: System.Windows.Forms::Orientation

One of the Orientation values.

Exception Condition
InvalidEnumArgumentException

The assigned value is not one of the Orientation values.

When the Orientation property is set to Orientation::Horizontal, the scroll box moves from left to right as the Value increases. When the Orientation property is set to Orientation::Vertical, the scroll box moves from bottom to top as the Value increases.

The following example demonstrates how to set some of the TrackBar properties.

trackBar2->Orientation = Orientation::Vertical;
trackBar3->Orientation = Orientation::Vertical;
trackBar1->Maximum = 255;
trackBar2->Maximum = 255;
trackBar3->Maximum = 255;
trackBar1->Width = 400;
trackBar2->Height = trackBar1->Width;
trackBar3->Height = trackBar1->Width;
trackBar1->LargeChange = 16;
trackBar2->LargeChange = 16;
trackBar3->LargeChange = 16;

.NET Framework
Available since 1.1
Return to top
Show: