Class jclass.table.JCScrollInfo
All Packages Class Hierarchy This Package Previous Next Index
Class jclass.table.JCScrollInfo
java.lang.Object
|
+----jclass.table.JCScrollInfo
- public class JCScrollInfo
- extends Object
TblScrollbar is the info parameter of a SCROLL callback.
- See Also:
- SCROLL
-
direction
- This is either Scrollbar.HORIZONTAL or Scrollbar.VERTICAL (read-only).
-
event
- The event which initiated the action (read-only).
-
scrollbar
- The scrollbar component (read-only).
-
stage
- This is either JCTblCallback.BEGIN or JCTblCallback.END (read-only).
-
value
- The scrollbar's current value (read-write).
-
JCScrollInfo(TblScrollbar, int, int, Event, int)
-
scrollbar
public TblScrollbar scrollbar
- The scrollbar component (read-only).
value
public int value
- The scrollbar's current value (read-write). This can be changed if stage
is JCTblCallback.BEGIN.
event
public Event event
- The event which initiated the action (read-only).
stage
public int stage
- This is either JCTblCallback.BEGIN or JCTblCallback.END (read-only).
direction
public int direction
- This is either Scrollbar.HORIZONTAL or Scrollbar.VERTICAL (read-only).
JCScrollInfo
public JCScrollInfo(TblScrollbar sb,
int stage,
int dir,
Event ev,
int value)
All Packages Class Hierarchy This Package Previous Next Index