Delegate WorkbookEventHandler

WorkbookEventHandler delegate

Represents the interface that intend to handle workbook events.

void handleCellEvent(Object sender, CellEventArgs e);

public delegate void WorkbookEventHandler(object sender, CellEventArgs e);
ParameterTypeDescription
senderObjectThe source of the event.
eCellEventArgsThe event argument.

See Also