Delegate CellEventStringHandler

CellEventStringHandler delegate

Represents the method that intend to handle cell events. same as CellEventHandler interface,but return string result

String handleCellEvent(Object sender, CellEventArgs e);

public delegate string CellEventStringHandler(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.

Return Value

string value

See Also