Delegate CellErrorHandler

CellErrorHandler delegate

Represents the interface that intend to handle cell error events.

void handleCellEvent(Object sender, GridCellException ex, OnErrorActionQuery query);

public delegate void CellErrorHandler(object sender, WebCellException ex, 
    OnErrorActionQuery action);
ParameterTypeDescription
senderObjectThe source of the event.
exWebCellExceptionThe cell operation error.
actionOnErrorActionQuerycan get onerror action type information.

See Also