public enum ScrollDestination extends Enum<ScrollDestination>
Enum Constant and Description |
---|
BOTTOM
纵向滚动至 ScrollViewer 内容的结尾处。
|
END
纵向滚动至 ScrollViewer 内容的结尾处。
|
HOME
纵向滚动至 ScrollViewer 内容的起始处。
|
LEFT_END
横向滚动至 ScrollViewer 内容的起始处。
|
LINE_DOWN
将 ScrollViewer 内容向下滚动一行。
|
LINE_LEFT
将 ScrollViewer 内容向左滚动预定义好的数值。
|
LINE_RIGHT
将 ScrollViewer 内容向右滚动预定义好的数值。
|
LINE_UP
将 ScrollViewer 内容向上滚动一行。
|
PAGE_DOWN
将 ScrollViewer 内容向下滚动一页。
|
PAGE_LEFT
将 ScrollViewer 内容向左滚动一页。
|
PAGE_RIGHT
将 ScrollViewer 内容向右滚动一页。
|
PAGE_UP
将 ScrollViewer 内容向上滚动一页。
|
RIGHT_END
横向滚动至 ScrollViewer 内容的结尾处。
|
TOP
纵向滚动至 ScrollViewer 内容的起始处。
|
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.