| 패키지 | mx.data |
| 클래스 | public class UpdateCollectionRange |
| 상속 | UpdateCollectionRange Object |
| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
body property.
관련 API 요소
| 속성 | 정의 주체 | ||
|---|---|---|---|
![]() | constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | |
| identities : Array
An Array of identity objects that represent which items
were either deleted or inserted in the associated collection starting
at the position indicated by the position property. | UpdateCollectionRange | ||
| position : int
Indicates the beginning index for the range of updates made to the
associated collection. | UpdateCollectionRange | ||
| size : int
Indicates the increase in collection size. | UpdateCollectionRange | ||
| updateType : int
Indicates what operation this range represents. | UpdateCollectionRange | ||
| 메서드 | 정의 주체 | ||
|---|---|---|---|
Constructs an empty UpdateCollectionRange. | UpdateCollectionRange | ||
![]() |
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | |
![]() |
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | |
![]() |
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | |
![]() |
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | |
![]() |
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | |
![]() |
지정된 객체의 문자열 표현을 반환합니다. | Object | |
![]() |
지정된 객체의 프리미티브 값을 반환합니다. | Object | |
| 상수 | 정의 주체 | ||
|---|---|---|---|
| DECREMENT_COLLECTION_SIZE : int = 3 [정적]
Indicates a derease in the collection size. | UpdateCollectionRange | ||
| DELETE_FROM_COLLECTION : int = 1 [정적]
Indicates a range of items that have been deleted from the collection. | UpdateCollectionRange | ||
| INCREMENT_COLLECTION_SIZE : int = 2 [정적]
Indicates an increase in the collection size. | UpdateCollectionRange | ||
| INSERT_INTO_COLLECTION : int = 0 [정적]
Indicates a range of items have been inserted into the collection. | UpdateCollectionRange | ||
| UPDATE_COLLECTION_SIZE : int = 4 [정적]
Indicates an update to the collection size sent by the server. | UpdateCollectionRange | ||
identities | 속성 |
public var identities:Array| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
An Array of identity objects that represent which items
were either deleted or inserted in the associated collection starting
at the position indicated by the position property.
position | 속성 |
public var position:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates the beginning index for the range of updates made to the
associated collection.
The updateType indicates if the range was an insert or a
remove operation.
size | 속성 |
public var size:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates the increase in collection size. Only applicatble when update type is INCREMENT_COLLECTION_SIZE or DECREMENT_COLLECTION_SIZE
updateType | 속성 |
public var updateType:int| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates what operation this range represents. Valid values are:
UpdateCollectionRange.INSERT_INTO_COLLECTIONUpdateCollectionRange.DELETE_FROM_COLLECTIONUpdateCollectionRange.INCREMENT_COLLECTION_SIZEUpdateCollectionRange.DECREMENT_COLLECTION_SIZEUpdateCollectionRange.UPDATE_COLLECTION_SIZE
UpdateCollectionRange | () | 생성자 |
public function UpdateCollectionRange()| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Constructs an empty UpdateCollectionRange.
DECREMENT_COLLECTION_SIZE | 상수 |
public static const DECREMENT_COLLECTION_SIZE:int = 3| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates a derease in the collection size.
The size property will contain an increase amount
DELETE_FROM_COLLECTION | 상수 |
public static const DELETE_FROM_COLLECTION:int = 1| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates a range of items that have been deleted from the collection.
The identities property will contain an Array
of item identity objects for each item that was inserted into the
collection.
The position property indicates at what index the insertion
operation began.
Inspect the identityies.length to determine how many items
were inserted.
INCREMENT_COLLECTION_SIZE | 상수 |
public static const INCREMENT_COLLECTION_SIZE:int = 2| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates an increase in the collection size.
The size property will contain an increase amount
INSERT_INTO_COLLECTION | 상수 |
public static const INSERT_INTO_COLLECTION:int = 0| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates a range of items have been inserted into the collection.
The identities property will contain an Array
of item identity objects for each item that was inserted into the
collection.
The position property indicates at what index the insertion
operation began.
Inspect the identityies.length to determine how many items
were inserted.
UPDATE_COLLECTION_SIZE | 상수 |
public static const UPDATE_COLLECTION_SIZE:int = 4| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| 런타임 버전: | Flash Player 9, AIR 1.1 |
Indicates an update to the collection size sent by the server.
This will occur when a paged-fill is refreshed on the server.
The size property will contain an increase amount
var ucm:UpdateCollectionMessage = UpdateCollectionMessage(msg);
var ucr:UpdateCollectionRange = UpdateCollectionRange(ucm.body[0]);
trace("First change to the collection was "+ ucr.updateType +" at "+
ucr.position);
Tue Jun 12 2018, 03:17 PM Z
상속되는 공용 속성 숨기기
상속되는 공용 속성 표시