패키지 | mx.effects.effectClasses |
클래스 | public class PropertyChanges |
상속 | PropertyChanges Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
start
and end
fields
of the PropertyChanges class contain the same set of properties,
but with different values.
Target properties that have the same start and end values
are not included in the start
and end
fields.
관련 API 요소
속성 | 정의 주체 | ||
---|---|---|---|
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
end : Object
An Object containing the ending properties of the target
component modified by the change in view state. | PropertyChanges | ||
start : Object
An Object containing the starting properties of the target
component modified by the change in view state. | PropertyChanges | ||
stripUnchangedValues : Boolean = true
This flag controls whether values that are the same in the
start and end states are stripped from those objects. | PropertyChanges | ||
target : Object
A target component of a transition. | PropertyChanges |
메서드 | 정의 주체 | ||
---|---|---|---|
PropertyChanges(target:Object)
The PropertyChanges constructor. | PropertyChanges | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
end | 속성 |
public var end:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
An Object containing the ending properties of the target
component modified by the change in view state.
For example, for a target
component that is both
moved and resized by a change to the view state, end
contains the ending position and size of the component,
as the following example shows:
{ x: 100, y: 100, width: 200, height: 200 }
start | 속성 |
public var start:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
An Object containing the starting properties of the target
component modified by the change in view state.
For example, for a target
component that is both
moved and resized by a change to the view state, start
contains the starting position and size of the component,
as the following example shows:
{ x: 0, y: 0, width: 100, height: 100}
stripUnchangedValues | 속성 |
public var stripUnchangedValues:Boolean = true
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
This flag controls whether values that are the same in the start and end states are stripped from those objects.
기본값: true.
target | 속성 |
public var target:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
A target component of a transition.
The start
and end
fields
of the PropertyChanges object define how the target component
is modified by the change to the view state.
PropertyChanges | () | 생성자 |
Tue Jun 12 2018, 03:17 PM Z