javax.swing
Interface ScrollPaneConstants

All Known Implementing Classes:
JScrollPane, ScrollPaneLayout

public interface ScrollPaneConstants

Safe: Constants used with the JScrollPane component.

Version:
1.15 12/03/01
Author:
Hans Muller

Field Summary
static String COLUMN_HEADER
          Suppressed: Identifies the area at the top the viewport between the upper left corner and the upper right corner.
static String HORIZONTAL_SCROLLBAR
          Suppressed: Identifies a horizonal scrollbar.
static int HORIZONTAL_SCROLLBAR_ALWAYS
          Enabled: Used to set the horizontal scroll bar policy so that horizontal scrollbars are always displayed.
static int HORIZONTAL_SCROLLBAR_AS_NEEDED
          Enabled: Used to set the horizontal scroll bar policy so that horizontal scrollbars are displayed only when needed.
static int HORIZONTAL_SCROLLBAR_NEVER
          Enabled: Used to set the horizontal scroll bar policy so that horizontal scrollbars are never displayed.
static String HORIZONTAL_SCROLLBAR_POLICY
          Suppressed: Identifies the horizontal scroll bar policy property.
static String LOWER_LEADING_CORNER
          Suppressed: Identifies the lower leading edge corner of the viewport.
static String LOWER_LEFT_CORNER
          Suppressed: Identifies the lower left corner of the viewport.
static String LOWER_RIGHT_CORNER
          Suppressed: Identifies the lower right corner of the viewport.
static String LOWER_TRAILING_CORNER
          Suppressed: Identifies the lower trailing edge corner of the viewport.
static String ROW_HEADER
          Suppressed: Identifies the area along the left side of the viewport between the upper left corner and the lower left corner.
static String UPPER_LEADING_CORNER
          Suppressed: Identifies the upper leading edge corner of the viewport.
static String UPPER_LEFT_CORNER
          Suppressed: Identifies the upper left corner of the viewport.
static String UPPER_RIGHT_CORNER
          Suppressed: Identifies the upper right corner of the viewport.
static String UPPER_TRAILING_CORNER
          Suppressed: Identifies the upper trailing edge corner of the viewport.
static String VERTICAL_SCROLLBAR
          Suppressed: Identifies a vertical scrollbar.
static int VERTICAL_SCROLLBAR_ALWAYS
          Enabled: Used to set the vertical scroll bar policy so that vertical scrollbars are always displayed.
static int VERTICAL_SCROLLBAR_AS_NEEDED
          Enabled: Used to set the vertical scroll bar policy so that vertical scrollbars are displayed only when needed.
static int VERTICAL_SCROLLBAR_NEVER
          Enabled: Used to set the vertical scroll bar policy so that vertical scrollbars are never displayed.
static String VERTICAL_SCROLLBAR_POLICY
          Suppressed: Identifies the vertical scroll bar policy property.
static String VIEWPORT
          Suppressed: Identifies a "viewport" or display area, within which scrolled contents are visible.
 

Field Detail

VIEWPORT

public static final String VIEWPORT
Suppressed: Identifies a "viewport" or display area, within which scrolled contents are visible.


VERTICAL_SCROLLBAR

public static final String VERTICAL_SCROLLBAR
Suppressed: Identifies a vertical scrollbar.


HORIZONTAL_SCROLLBAR

public static final String HORIZONTAL_SCROLLBAR
Suppressed: Identifies a horizonal scrollbar.


ROW_HEADER

public static final String ROW_HEADER
Suppressed: Identifies the area along the left side of the viewport between the upper left corner and the lower left corner.


COLUMN_HEADER

public static final String COLUMN_HEADER
Suppressed: Identifies the area at the top the viewport between the upper left corner and the upper right corner.


LOWER_LEFT_CORNER

public static final String LOWER_LEFT_CORNER
Suppressed: Identifies the lower left corner of the viewport.


LOWER_RIGHT_CORNER

public static final String LOWER_RIGHT_CORNER
Suppressed: Identifies the lower right corner of the viewport.


UPPER_LEFT_CORNER

public static final String UPPER_LEFT_CORNER
Suppressed: Identifies the upper left corner of the viewport.


UPPER_RIGHT_CORNER

public static final String UPPER_RIGHT_CORNER
Suppressed: Identifies the upper right corner of the viewport.


LOWER_LEADING_CORNER

public static final String LOWER_LEADING_CORNER
Suppressed: Identifies the lower leading edge corner of the viewport. The leading edge is determined relative to the Scroll Pane's ComponentOrientation property.


LOWER_TRAILING_CORNER

public static final String LOWER_TRAILING_CORNER
Suppressed: Identifies the lower trailing edge corner of the viewport. The trailing edge is determined relative to the Scroll Pane's ComponentOrientation property.


UPPER_LEADING_CORNER

public static final String UPPER_LEADING_CORNER
Suppressed: Identifies the upper leading edge corner of the viewport. The leading edge is determined relative to the Scroll Pane's ComponentOrientation property.


UPPER_TRAILING_CORNER

public static final String UPPER_TRAILING_CORNER
Suppressed: Identifies the upper trailing edge corner of the viewport. The trailing edge is determined relative to the Scroll Pane's ComponentOrientation property.


VERTICAL_SCROLLBAR_POLICY

public static final String VERTICAL_SCROLLBAR_POLICY
Suppressed: Identifies the vertical scroll bar policy property.


HORIZONTAL_SCROLLBAR_POLICY

public static final String HORIZONTAL_SCROLLBAR_POLICY
Suppressed: Identifies the horizontal scroll bar policy property.


VERTICAL_SCROLLBAR_AS_NEEDED

public static final int VERTICAL_SCROLLBAR_AS_NEEDED
Enabled: Used to set the vertical scroll bar policy so that vertical scrollbars are displayed only when needed.


VERTICAL_SCROLLBAR_NEVER

public static final int VERTICAL_SCROLLBAR_NEVER
Enabled: Used to set the vertical scroll bar policy so that vertical scrollbars are never displayed.


VERTICAL_SCROLLBAR_ALWAYS

public static final int VERTICAL_SCROLLBAR_ALWAYS
Enabled: Used to set the vertical scroll bar policy so that vertical scrollbars are always displayed.


HORIZONTAL_SCROLLBAR_AS_NEEDED

public static final int HORIZONTAL_SCROLLBAR_AS_NEEDED
Enabled: Used to set the horizontal scroll bar policy so that horizontal scrollbars are displayed only when needed.


HORIZONTAL_SCROLLBAR_NEVER

public static final int HORIZONTAL_SCROLLBAR_NEVER
Enabled: Used to set the horizontal scroll bar policy so that horizontal scrollbars are never displayed.


HORIZONTAL_SCROLLBAR_ALWAYS

public static final int HORIZONTAL_SCROLLBAR_ALWAYS
Enabled: Used to set the horizontal scroll bar policy so that horizontal scrollbars are always displayed.



comments?