Delegate RowColumnEventHandler

RowColumnEventHandler delegate

Represents the interface that intend to handle row/column events.

void handleCellEvent(Object sender, RowColumnEventArgs e);

public delegate void RowColumnEventHandler(object sender, RowColumnEventArgs e);
ParameterTypeDescription
senderObjectThe source of the event.
eRowColumnEventArgsThe event argument. Call e.RejectOperation() if you want to cancel the deleting operation in RowDeleting or ColumnDeleting event handlers.

See Also