com.klg.jclass.higrid
Class HiGridMoveCellEvent
java.lang.Object
|
+--java.util.EventObject
|
+--com.klg.jclass.higrid.HiGridEvent
|
+--com.klg.jclass.higrid.HiGridMoveCellEvent
- All Implemented Interfaces:
- Serializable
- public class HiGridMoveCellEvent
- extends HiGridEvent
Event object for HiGridMoveCellEvent
, a subclass of
HiGridEvent
containing information about the particular
type of event.
- See Also:
- Serialized Form
Constructor Summary |
HiGridMoveCellEvent(com.klg.jclass.higrid.HiGrid grid,
int eventType,
com.klg.jclass.higrid.RowNode rowNode,
String column)
Default constructor |
Method Summary |
boolean |
isCancelable()
Return true if this event can be cancelled. |
BEFORE_MOVE_COLUMN
public static final int BEFORE_MOVE_COLUMN
- The column is being moved. A listener to this event
can abort the action.
- See Also:
- Constant Field Values
AFTER_MOVE_COLUMN
public static final int AFTER_MOVE_COLUMN
- The column has been moved.
- See Also:
- Constant Field Values
HiGridMoveCellEvent
public HiGridMoveCellEvent(com.klg.jclass.higrid.HiGrid grid,
int eventType,
com.klg.jclass.higrid.RowNode rowNode,
String column)
- Default constructor
isCancelable
public boolean isCancelable()
- Return true if this event can be cancelled. Cancelling an event
cancels the operation which generated the event.
- Overrides:
isCancelable
in class HiGridEvent
- Returns:
- true if this event can be cancelled.