ToolStripProgressBar Constructors

Definition

Initializes a new instance of the ToolStripProgressBar class.

Overloads

ToolStripProgressBar()

Initializes a new instance of the ToolStripProgressBar class.

ToolStripProgressBar(String)

Initializes a new instance of the ToolStripProgressBar class with specified name.

ToolStripProgressBar()

Initializes a new instance of the ToolStripProgressBar class.

public:
 ToolStripProgressBar();
public ToolStripProgressBar ();
Public Sub New ()

Remarks

By default, the Minimum property is set to 0, the Maximum property is set to 100, and the Step property is set to 10.

Applies to

ToolStripProgressBar(String)

Initializes a new instance of the ToolStripProgressBar class with specified name.

public:
 ToolStripProgressBar(System::String ^ name);
public ToolStripProgressBar (string name);
public ToolStripProgressBar (string? name);
new System.Windows.Forms.ToolStripProgressBar : string -> System.Windows.Forms.ToolStripProgressBar
Public Sub New (name As String)

Parameters

name
String

The name of the ToolStripProgressBar.

Applies to