RowColumnEventArgs
Inheritance: java.lang.Object
public class RowColumnEventArgs
Provides data for row/column events.
Methods
Method | Description |
---|---|
equals(Object arg0) | |
getArgument() | The argument of the event. |
getClass() | |
getNum() | The row or column number, starts from zero. |
getType() | The row or column type. |
hashCode() | |
isCancel() | shall we cancel the operation. |
notify() | |
notifyAll() | |
rejectOperation() | Call this method in RowDeleting/ColumnDeleting event handlers to cancel the deleting operations. |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getArgument()
public Object getArgument()
The argument of the event.
Returns: java.lang.Object
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getNum()
public int getNum()
The row or column number, starts from zero.
Returns: int
getType()
public int getType()
The row or column type.
See RowColumnType.
Returns: int
hashCode()
public native int hashCode()
Returns: int
isCancel()
public boolean isCancel()
shall we cancel the operation.
Returns: boolean
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
rejectOperation()
public void rejectOperation()
Call this method in RowDeleting/ColumnDeleting event handlers to cancel the deleting operations.
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |