'Declaration Public Event SlideRight As SlideRightEventHandler
'Usage Dim instance As SuperEditBase Dim handler As SlideRightEventHandler AddHandler instance.SlideRight, handler
public event SlideRightEventHandler SlideRight
Event Data
The event handler receives an argument of type SlideRightEventArgs containing data related to this event. The following SlideRightEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel the SlideRight event and action. |
Remarks
You can use the Cancel property in the SlideRightEventArgs class to cancel the SlideRight event.
See Also