RowColumnEventHandler

All Implemented Interfaces: java.io.Serializable

public interface RowColumnEventHandler extends Serializable

Represents the interface that intend to handle row/column events.

Methods

MethodDescription
handleCellEvent(Object sender, RowColumnEventArgs e)handle the related Cell Event.

handleCellEvent(Object sender, RowColumnEventArgs e)

public abstract void handleCellEvent(Object sender, RowColumnEventArgs e)

handle the related Cell Event.

Parameters:

ParameterTypeDescription
senderjava.lang.ObjectThe source of the event.
eRowColumnEventArgsThe event argument. Call e.RejectOperation() if you want to cancel the deleting operation in RowDeleting or ColumnDeleting event handlers.