Search
SliderComponent.BatchValueChanged Event
See Also
 





Raised when the slider value has been changed after a sequence of similar changes.

Namespace: MindFusion.Diagramming.Components
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<ValueChangedEventArgs<Single>> BatchValueChanged

Visual Basic  Copy Code

Public Event BatchValueChanged As EventHandler(Of ValueChangedEventArgs(Of Single))

 Event Data

BatchValueChanged event handlers receive an argument of type ValueChangedEventArgs<Single>.

 Remarks

This event is raised only once after a continuous sequence of similar changes, such as holding down the increase or decrease buttons or dragging around the slider thumbs before releasing the mouse. In contrast, the ValueChanged event is raised once for each change in the sequence.

 See Also