public enum ScrollDestination extends Enum<ScrollDestination>
Enum Constant and Description |
---|
BOTTOM
Scrolls vertically to the end of the ScrollViewer content.
|
END
Scrolls vertically to the end of the ScrollViewer content.
|
HOME
Scrolls vertically to the beginning of the ScrollViewer content.
|
LEFT_END
Scrolls horizontally to the beginning of the ScrollViewer content.
|
LINE_DOWN
Scrolls the ScrollViewer content downward by one line.
|
LINE_LEFT
Scrolls the ScrollViewer content to the left by a predetermined amount.
|
LINE_RIGHT
Scrolls the ScrollViewer content to the right by a predetermined amount.
|
LINE_UP
Scrolls the ScrollViewer content upward by one line.
|
PAGE_DOWN
Scrolls the ScrollViewer content downward by one page.
|
PAGE_LEFT
Scrolls the ScrollViewer content to the left by one page.
|
PAGE_RIGHT
Scrolls the ScrollViewer content to the right by one page.
|
PAGE_UP
Scrolls the ScrollViewer content upward by one page.
|
RIGHT_END
Scrolls horizontally to the end of the ScrollViewer content.
|
TOP
Scrolls vertically to the beginning of the ScrollViewer content.
|
Modifier and Type | Method and Description |
---|---|
static ScrollDestination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScrollDestination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScrollDestination BOTTOM
public static final ScrollDestination END
public static final ScrollDestination HOME
public static final ScrollDestination LEFT_END
public static final ScrollDestination LINE_DOWN
public static final ScrollDestination LINE_LEFT
public static final ScrollDestination LINE_RIGHT
public static final ScrollDestination LINE_UP
public static final ScrollDestination PAGE_DOWN
public static final ScrollDestination PAGE_LEFT
public static final ScrollDestination PAGE_RIGHT
public static final ScrollDestination PAGE_UP
public static final ScrollDestination RIGHT_END
public static final ScrollDestination TOP
public static ScrollDestination[] values()
for (ScrollDestination c : ScrollDestination.values()) System.out.println(c);
public static ScrollDestination valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright 2009-2012 Micro Focus. All Rights Reserved.