Spread Windows Forms 11.0 Product Documentation
SpinDown Event (SuperEditBase)


FarPoint.Win Assembly > FarPoint.Win Namespace > SuperEditBase Class : SpinDown Event
Occurs when a user clicks a spin down button in the edit control.
Syntax
'Declaration
 
Public Event SpinDown As SpinDownEventHandler
'Usage
 
Dim instance As SuperEditBase
Dim handler As SpinDownEventHandler
 
AddHandler instance.SpinDown, handler
public event SpinDownEventHandler SpinDown
Event Data

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

PropertyDescription
Gets or sets whether to cancel the SpinDown event and action.  
Remarks
You can use the Cancel property in the SpinDownEventArgs class to cancel the SpinDown event.
See Also