ProgressBar

Wisej.Web.ProgressBar

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents a progress control that displays a value visually as a filled bar.

public class ProgressBar : Control

Constructors

Initializes a new instance of the ProgressBar class.

Initializes a new instance of the ProgressBar class with the specified settings. Sets the Location and Size properties based on the provided parameters.

Properties

Color: Returns or sets the color of the progress bar portion.

BorderStyle: Indicates the border style for the control. (Default: None)

Int32: Returns or sets the maximum value of the range of the control. (Default: 100)

Throws:

Int32: Returns or sets the minimum value of the range of the control. (Default: 0)

Throws:

Int32: Returns or sets the amount by which a call to the PerformStep method increases the current position of the progress bar. (Default: 10)

Int32: Returns or sets the current position of the progress bar. (Default: 0)

Throws:

  • ArgumentException The value specified is greater than the value of the Maximum property; or the value specified is less than the value of the Minimum property.

Methods

Advances the current position of the progress bar by the specified amount.

Advances the current position of the progress bar by the amount of the Step property.

Implements

Last updated