Delegate CellEventHandler

CellEventHandler delegate

Represents the interface that intend to handle cell events.

void handleCellEvent(Object sender, CellEventArgs e);

public delegate void CellEventHandler(object sender, CellEventArgs e);
ParameterTypeDescription
senderObjectThe source grid of the event.
eCellEventArgsThe event argument. The e.Cell is the cell who fires the event. The e.Argument contains the argument of the event.

See Also