 | MButtonDblClkRowColEventHandler Delegate |
Namespace: Stingray.GridAssembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: [TAG_DECIMAL_VERSION]
Syntaxpublic delegate void MButtonDblClkRowColEventHandler(
Object sender,
MButtonDblClkRowColEventArgs e
)
Public Delegate Sub MButtonDblClkRowColEventHandler (
sender As Object,
e As MButtonDblClkRowColEventArgs
)
public delegate void MButtonDblClkRowColEventHandler(
Object^ sender,
MButtonDblClkRowColEventArgs^ e
)
Parameters
- sender
- Type: SystemObject
The object that generated the event. - e
- Type: Stingray.GridMButtonDblClkRowColEventArgs
Supplies the event data.
Remarks
An MButtonDblClkRowCol delegate identifies the method that will
handle the event. To associate an event handler with the event,
add an instance of the delegate to the event. The associated event
handler is then invoked whenever the event occurs, until the
delegate is removed.
See Also