dbicDial Send comments on this topic.
ValueChanging Event
See Also 
dbicDial Assembly > Dbi.WinControl.Dial Namespace > dbiDial Class : ValueChanging Event

Event fired as the value of the dial changes, but before it is committed.

Syntax

Visual Basic (Declaration) 
Public Event ValueChanging As dbiDial.EventValueChangingHandler
C# 
public event dbiDial.EventValueChangingHandler ValueChanging

Event Data

The event handler receives an argument of type ValueChangingEventArgs containing data related to this event. The following ValueChangingEventArgs properties provide information specific to this event.

PropertyDescription
NewValue The value the dial will become
OldValue The previous value if the dial.

Remarks

This event will fire when either the Value Property is changed in code, or when the dial is moved through user interaction.

Requirements

Target Platforms: Current Windows operating system with .NET 8.

See Also