Click or drag to resize
GridControlOnMButtonClickedRowCol Method
Raises the MButtonClickedRowCol event.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
protected virtual bool OnMButtonClickedRowCol(
	MButtonClickedRowColEventArgs e
)

Parameters

e
Type: Stingray.GridMButtonClickedRowColEventArgs
The event data.

Return Value

Type: Boolean
true if the event was handled; false otherwise.
Remarks
Raising the event causes the invocation of all delegates attached to the event.

This virtual method allows classes derived from

GridControl
to handle the event. This is the preferred technique for handling events in derived classes.

When overriding this method, be sure to call the base class implementation to ensure that all delegates attached to the event are invoked.

See Also