TrackBarExtensions
Wisej.Web.Markup.TrackBarExtensions
Last updated
Was this helpful?
Wisej.Web.Markup.TrackBarExtensions
Last updated
Was this helpful?
Namespace: Wisej.Web.Markup
Assembly: Wisej.Framework (4.0.0.0)
Adds fluent markup extension methods to the TrackBar class.
public class TrackBarExtensions
Sets the maximum value of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
maximum
The maximum value to set.
Returns: TTrackBar. The modified track bar with the updated maximum value.
Sets the minimum value of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
minimum
The minimum value to set.
Returns: TTrackBar. The modified track bar with the updated minimum value.
Attaches an event handler to the Scroll event of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
action
The action to perform when the Scroll event is triggered.
Returns: TTrackBar. The modified track bar with the event handler attached.
Attaches an event handler to the ValueChanged event of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
action
The action to perform when the ValueChanged event is triggered.
Returns: TTrackBar. The modified track bar with the event handler attached.
Sets the orientation of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
orientation
The orientation to set.
Returns: TTrackBar. The modified track bar with the updated orientation.
Configures whether the value should be displayed on the specified track bar.
TTrackBar
trackBar
The track bar to modify.
showValue
Indicates whether the value should be displayed.
Returns: TTrackBar. The modified track bar with the updated display setting.
Sets the small change value of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
smallChange
The small change value to set.
Returns: TTrackBar. The modified track bar with the updated small change value.
Sets the tick frequency of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
tickFrequency
The tick frequency to set.
Returns: TTrackBar. The modified track bar with the updated tick frequency.
Sets the tick style of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
tickStyle
The tick style to set.
Returns: TTrackBar. The modified track bar with the updated tick style.
Sets the value of the specified track bar.
TTrackBar
trackBar
The track bar to modify.
value
The value to set.
Returns: TTrackBar. The modified track bar with the updated value.