|
|
|
|
OnQueryContinueDrag Method, SftTabs Class |
Raises the QueryContinueDrag event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overrides Sub OnQueryContinueDrag( ByVal qcdEvent As QueryContinueDragEventArgs ) |
C# |
protected override void OnQueryContinueDrag( QueryContinueDragEventArgs qcdEvent ); |
C++ |
protected: virtual void OnQueryContinueDrag( QueryContinueDragEventArgs^ qcdEvent ); |
qcdEvent
A QueryContinueDragEventArgs that contains the event data.
Comments
The OnQueryContinueDrag method raises the QueryContinueDrag event.
Raising an event invokes the event handler through a delegate.
The OnQueryContinueDrag method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnQueryContinueDrag in a derived class, make sure to call the base class's OnQueryContinueDrag method so that registered delegates receive the event.