All Packages Class Hierarchy This Package Previous Next Index
Class jclass.table.JCPaintEvent
java.lang.Object
|
+----java.util.EventObject
|
+----java.awt.AWTEvent
|
+----jclass.table.TableAWTEvent
|
+----jclass.table.JCPaintEvent
- public class JCPaintEvent
- extends TableAWTEvent
The event posted before and after a paint a portion of the table is
painted (whenever the table redraws or modifies an onscreen area).
- See Also:
- addPaintListener, JCPaintAdapter, JCPaintListener
-
PAINT
- The id for this event.
-
JCPaintEvent(Table, Rectangle, int, int, int, int)
-
-
getEndColumn()
- Gets the column of the last cell in the range (top-left corner).
-
getEndRow()
- Gets the row of the last cell in the range (top-left corner).
-
getRect()
- Gets the expose rectangle (the gc's clipRect).
-
getStartColumn()
- Gets the column of the first cell in the range (top-left corner).
-
getStartRow()
- Gets the row of the first cell in the range (top-left corner).
PAINT
public static final int PAINT
- The id for this event.
JCPaintEvent
public JCPaintEvent(Table table,
Rectangle expose,
int start_row,
int start_col,
int end_row,
int end_col)
getRect
public Rectangle getRect()
- Gets the expose rectangle (the gc's clipRect).
getStartRow
public int getStartRow()
- Gets the row of the first cell in the range (top-left corner).
getStartColumn
public int getStartColumn()
- Gets the column of the first cell in the range (top-left corner).
getEndRow
public int getEndRow()
- Gets the row of the last cell in the range (top-left corner).
getEndColumn
public int getEndColumn()
- Gets the column of the last cell in the range (top-left corner).
All Packages Class Hierarchy This Package Previous Next Index