Raised when the slider value has been changed after a sequence of similar changes.
Namespace: MindFusion.Diagramming.Components
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public event EventHandler<ValueChangedEventArgs<Single>> BatchValueChanged |
Visual Basic
Copy Code
|
|---|
Public Event BatchValueChanged As EventHandler(Of ValueChangedEventArgs(Of Single)) |
Event DataBatchValueChanged event handlers receive an argument of type ValueChangedEventArgs<Single>.
RemarksThis 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