ProgressBarExtensions
Wisej.Web.Markup.ProgressBarExtensions
Last updated
Was this helpful?
Wisej.Web.Markup.ProgressBarExtensions
Last updated
Was this helpful?
Namespace: Wisej.Web.Markup
Assembly: Wisej.Framework (4.0.0.0)
Provides fluent markup extension methods for configuring properties of the ProgressBar control.
public class ProgressBarExtensions
Sets the color of the progress bar using a Color structure.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
color
The color to set.
Returns: TProgressBar. The modified progress bar.
Sets the color of the progress bar using a color name.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
color
The name of the color.
Returns: TProgressBar. The modified progress bar.
Sets the color of the progress bar using an ARGB integer.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
color
The ARGB value of the color.
Returns: TProgressBar. The modified progress bar.
Sets the color of the progress bar using RGB components.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
r
The red component.
g
The green component.
b
The blue component.
Returns: TProgressBar. The modified progress bar.
Sets the border style of the specified progress bar.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
borderStyle
The border style to set.
Returns: TProgressBar. The modified progress bar.
Sets the maximum value of the specified progress bar.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
value
The maximum value for the progress bar.
Returns: TProgressBar. The modified progress bar.
Sets the minimum value of the specified progress bar.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
value
The minimum value for the progress bar.
Returns: TProgressBar. The modified progress bar.
Sets the step increment value of the specified progress bar.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
value
The step increment value.
Returns: TProgressBar. The modified progress bar.
Sets the current value of the specified progress bar.
TProgressBar
The type of the progress bar.
progressBar
The progress bar to modify.
value
The new value for the progress bar.
Returns: TProgressBar. The modified progress bar.