Raised when the spinner value has been changed after a sequence of similar changes.
Namespace: MindFusion.Diagramming.Components
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public event EventHandler<ValueChangedEventArgs<Double>> BatchValueChanged |
Visual Basic
Copy Code
|
|---|
Public Event BatchValueChanged As EventHandler(Of ValueChangedEventArgs(Of Double)) |
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 entering several digits in a succession then pressing ENTER. In contrast, the ValueChanged event is raised once for each change in the sequence.
See Also