Orientation Settings in Windows Forms Progress Bar

18 Nov 20181 minute to read

The direction of display of the Progress Bar control can be changed using the property given below.

Property table

Progress Bar property Description
ProgressOrientation Determines the horizontal or vertical style of the progress bar.
this.progressBarAdv1.ProgressOrientation = System.Windows.Forms.Orientation.Horizontal;

this.progressBarAdv1.ProgressOrientation = System.Windows.Forms.Orientation.Vertical;
Me.progressBarAdv1.ProgressOrientation = System.Windows.Forms.Orientation.Horizontal

Me.progressBarAdv1.ProgressOrientation = System.Windows.Forms.Orientation.Vertical

Overview_img21