Delegate CustomCommandEventHandler

CustomCommandEventHandler delegate

Represents the interface that intend to handle Custom Command events.

void handleCellEvent(Object sender, String command);

public delegate void CustomCommandEventHandler(object sender, string command);
ParameterTypeDescription
senderObjectThe source grid of the event.
commandStringThe command string user send.

See Also