Class jclass.table.JCPaintInfo
All Packages Class Hierarchy This Package Previous Next Index
Class jclass.table.JCPaintInfo
java.lang.Object
|
+----jclass.table.JCPaintInfo
- public class JCPaintInfo
- extends Object
JCPaintInfo is the info parameter of a PAINT callback. This callback is called before
and after a paint.
- See Also:
- PAINT
-
end_column
- Column of last cell in range (top-left corner).
-
end_row
- Row of last cell in range (bottom-right corner).
-
stage
- This is either JCTblCallback.BEGIN or JCTblCallback.END.
-
start_column
- Column of first cell in range (top-left corner).
-
start_row
- Row of first cell in range (top-left corner).
-
JCPaintInfo(Rectangle, int, int, int, int)
-
start_row
public int start_row
- Row of first cell in range (top-left corner).
start_column
public int start_column
- Column of first cell in range (top-left corner).
end_row
public int end_row
- Row of last cell in range (bottom-right corner).
end_column
public int end_column
- Column of last cell in range (top-left corner).
stage
public int stage
- This is either JCTblCallback.BEGIN or JCTblCallback.END. (read-only)
JCPaintInfo
public JCPaintInfo(Rectangle expose,
int start_row,
int start_col,
int end_row,
int end_col)
All Packages Class Hierarchy This Package Previous Next Index