| Pakiet | mx.data |
| Klasa | public class UpdateCollectionRange |
| Dziedziczenie | UpdateCollectionRange Object |
| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
body property.
Powiązane elementy interfejsu API
| Właściwość | Zdefiniowane przez | ||
|---|---|---|---|
![]() | constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | 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 | ||
| Metoda | Zdefiniowane przez | ||
|---|---|---|---|
Constructs an empty UpdateCollectionRange. | UpdateCollectionRange | ||
![]() |
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | |
![]() |
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | |
![]() |
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | |
![]() |
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | |
![]() |
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | |
![]() |
Zwraca ciąg reprezentujący określony obiekt. | Object | |
![]() |
Zwraca pierwotną wartość dla określonego obiektu. | Object | |
| Stała | Zdefiniowane przez | ||
|---|---|---|---|
| DECREMENT_COLLECTION_SIZE : int = 3 [statyczny]
Indicates a derease in the collection size. | UpdateCollectionRange | ||
| DELETE_FROM_COLLECTION : int = 1 [statyczny]
Indicates a range of items that have been deleted from the collection. | UpdateCollectionRange | ||
| INCREMENT_COLLECTION_SIZE : int = 2 [statyczny]
Indicates an increase in the collection size. | UpdateCollectionRange | ||
| INSERT_INTO_COLLECTION : int = 0 [statyczny]
Indicates a range of items have been inserted into the collection. | UpdateCollectionRange | ||
| UPDATE_COLLECTION_SIZE : int = 4 [statyczny]
Indicates an update to the collection size sent by the server. | UpdateCollectionRange | ||
identities | właściwość |
public var identities:Array| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | 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 | właściwość |
public var position:int| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | 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 | właściwość |
public var size:int| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | 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 | właściwość |
public var updateType:int| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | 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 | () | Konstruktor |
public function UpdateCollectionRange()| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructs an empty UpdateCollectionRange.
DECREMENT_COLLECTION_SIZE | Stała |
public static const DECREMENT_COLLECTION_SIZE:int = 3| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates a derease in the collection size.
The size property will contain an increase amount
DELETE_FROM_COLLECTION | Stała |
public static const DELETE_FROM_COLLECTION:int = 1| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | 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 | Stała |
public static const INCREMENT_COLLECTION_SIZE:int = 2| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Indicates an increase in the collection size.
The size property will contain an increase amount
INSERT_INTO_COLLECTION | Stała |
public static const INSERT_INTO_COLLECTION:int = 0| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | 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 | Stała |
public static const UPDATE_COLLECTION_SIZE:int = 4| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
| Wersje środowiska wykonawczego: | 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, 12:06 PM Z
Ukryj dziedziczone właściwości publiczne
Pokaż dziedziczone właściwości publiczne