TrackBarExtensions
Wisej.Web.Markup.TrackBarExtensions
Namespace: Wisej.Web.Markup
Assembly: Wisej.Framework (4.0.0.0)
Adds fluent markup extension methods to the TrackBar class.
public class TrackBarExtensions
Methods
Maximum<TTrackBar>(trackBar, maximum)

Sets the maximum value of the specified track bar.
Returns: TTrackBar. The modified track bar with the updated maximum value.
Minimum<TTrackBar>(trackBar, minimum)

Sets the minimum value of the specified track bar.
Returns: TTrackBar. The modified track bar with the updated minimum value.
OnScroll<TTrackBar>(trackBar, action)

Attaches an event handler to the Scroll event of the specified track bar.
TTrackBar
Returns: TTrackBar. The modified track bar with the event handler attached.
OnValueChanged<TTrackBar>(trackBar, action)

Attaches an event handler to the ValueChanged event of the specified track bar.
TTrackBar
Returns: TTrackBar. The modified track bar with the event handler attached.
Orientation<TTrackBar>(trackBar, orientation)

Sets the orientation of the specified track bar.
Returns: TTrackBar. The modified track bar with the updated orientation.
ShowValue<TTrackBar>(trackBar, showValue)

Configures whether the value should be displayed on the specified track bar.
Returns: TTrackBar. The modified track bar with the updated display setting.
SmallChange<TTrackBar>(trackBar, smallChange)

Sets the small change value of the specified track bar.
Returns: TTrackBar. The modified track bar with the updated small change value.
TickFrequency<TTrackBar>(trackBar, tickFrequency)

Sets the tick frequency of the specified track bar.
Returns: TTrackBar. The modified track bar with the updated tick frequency.
TickStyle<TTrackBar>(trackBar, tickStyle)

Sets the tick style of the specified track bar.
Returns: TTrackBar. The modified track bar with the updated tick style.
Value<TTrackBar>(trackBar, value)

Sets the value of the specified track bar.
Returns: TTrackBar. The modified track bar with the updated value.
Last updated
Was this helpful?