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);
Parameter | Type | Description |
---|---|---|
sender | Object | The source grid of the event. |
e | CellEventArgs | The 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
- class CellEventArgs
- namespace Aspose.Cells.GridWeb.Data
- assembly Aspose.Cells.GridWeb