Orientation Settings in Windows Forms ProgressBarAdv

18 Nov 20181 minute to read

The direction of display of the Windows Forms Progress Bar (ProgressBarAdv) control can be changed using the property given below.

Property table

ProgressBarAdv 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