NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ProgressBar.Increment

Advances the current position of the ProgressBar by the specified increment and redraws the control to reflect the new position.

[Visual Basic]
Public Sub Increment( _
   ByVal value As Integer _
)
[C#]
public void Increment(
   int value
);
[C++]
public: void Increment(
   int value
);
[JScript]
public function Increment(
   value : int
);

Parameters

value
The specified amount by which to increment the control's current position.

Remarks

The Value property specifies the current position of the ProgressBar. If, after calling Increment, the new value is greater than Maximum, the value is reset to Minimum.

See Also

ProgressBar Class | ProgressBar Members | System.WinForms Namespace | Maximum | Minimum | Value