ProgressBarExtensions
Wisej.Web.Markup.ProgressBarExtensions
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
Methods
BarColor<TProgressBar>(progressBar, color)

Sets the color of the progress bar using a Color structure.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
BarColor<TProgressBar>(progressBar, color)

Sets the color of the progress bar using a color name.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
BarColor<TProgressBar>(progressBar, color)

Sets the color of the progress bar using an ARGB integer.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
BarColor<TProgressBar>(progressBar, r, g, b)

Sets the color of the progress bar using RGB components.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
BorderStyle<TProgressBar>(progressBar, borderStyle)

Sets the border style of the specified progress bar.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
Maximum<TProgressBar>(progressBar, value)

Sets the maximum value of the specified progress bar.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
Minimum<TProgressBar>(progressBar, value)

Sets the minimum value of the specified progress bar.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
Step<TProgressBar>(progressBar, value)

Sets the step increment value of the specified progress bar.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
Value<TProgressBar>(progressBar, value)

Sets the current value of the specified progress bar.
TProgressBar
The type of the progress bar.
Returns: TProgressBar. The modified progress bar.
Last updated
Was this helpful?