Package io.keikai.ui.event
Class CellMouseEvent
- java.lang.Object
-
- org.zkoss.zk.ui.event.Event
-
- org.zkoss.zk.ui.event.MouseEvent
-
- io.keikai.ui.event.CellMouseEvent
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CellFilterEvent
,CellHyperlinkEvent
public class CellMouseEvent extends org.zkoss.zk.ui.event.MouseEvent
A class from handle event which about mouse event on a cell- Author:
- Dennis.Chen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CellMouseEvent(String name, org.zkoss.zk.ui.Component target, Sheet sheet, int row, int col, int x, int y, int keys, int clientx, int clienty)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getClientx()
get x position of clientint
getClienty()
get y position of clientint
getColumn()
get column indexint
getRow()
get row indexSheet
getSheet()
get SheetString
toString()
-
Methods inherited from class org.zkoss.zk.ui.event.MouseEvent
getArea, getAreaComponent, getKeys, getMouseEvent, getPageX, getPageY, getX, getY
-
-
-
-
Method Detail
-
getSheet
public Sheet getSheet()
get Sheet- Returns:
- sheet the related sheet
-
getRow
public int getRow()
get row index- Returns:
- row index
-
getColumn
public int getColumn()
get column index- Returns:
- column index
-
getClientx
public int getClientx()
get x position of client- Returns:
- x position
-
getClienty
public int getClienty()
get y position of client- Returns:
- y position
-
toString
public String toString()
- Overrides:
toString
in classorg.zkoss.zk.ui.event.Event
-
-