패키지 | mx.core |
클래스 | public final class ScrollPolicy |
상속 | ScrollPolicy Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
horizontalScrollPolicy
and
verticalScrollPolicy
properties
of the Container and ScrollControlBase classes.
관련 API 요소
공용 속성
공용 메서드
공용 상수
상수 | 정의 주체 | ||
---|---|---|---|
AUTO : String = "auto" [정적]
Show the scrollbar if the children exceed the owner's dimension. | ScrollPolicy | ||
OFF : String = "off" [정적]
Never show the scrollbar. | ScrollPolicy | ||
ON : String = "on" [정적]
Always show the scrollbar. | ScrollPolicy |
상수 세부 정보
AUTO | 상수 |
public static const AUTO:String = "auto"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Show the scrollbar if the children exceed the owner's dimension. The size of the owner is not adjusted to account for the scrollbars when they appear, so this may cause the scrollbar to obscure the contents of the control or container.
OFF | 상수 |
public static const OFF:String = "off"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Never show the scrollbar.
ON | 상수 |
public static const ON:String = "on"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Always show the scrollbar. The size of the scrollbar is automatically added to the size of the owner's contents to determine the size of the owner if explicit sizes are not specified.
Tue Jun 12 2018, 03:17 PM Z