The ToolStripProgressBar.Increment(int) method enables you to increment the value of the progress bar by a specific amount. This method of incrementing the progress bar is similar to using the ToolStripProgressBar.Step property with the ToolStripProgressBar.PerformStep method. The ToolStripProgressBar.Value property specifies the current position of the System.Windows.Forms.ToolStripProgressBar. If, after calling the ToolStripProgressBar.Increment(int) method, the ToolStripProgressBar.Value property is greater than the value of the ToolStripProgressBar.Maximum property, the ToolStripProgressBar.Value property remains at the value of the ToolStripProgressBar.Maximum property. If, after calling the ToolStripProgressBar.Increment(int) method with a negative value specified in the value parameter, the ToolStripProgressBar.Value property is less than the value of the ToolStripProgressBar.Minimum property, the ToolStripProgressBar.Value property remains at the value of the ToolStripProgressBar.Minimum property.