Paket | mx.data |
Sınıf | public class UpdateCollectionRange |
Miras Alma | UpdateCollectionRange Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
body
property.
İlgili API Öğeleri
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | 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 |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructs an empty UpdateCollectionRange. | UpdateCollectionRange | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Sabit | Tanımlayan: | ||
---|---|---|---|
DECREMENT_COLLECTION_SIZE : int = 3 [statik]
Indicates a derease in the collection size. | UpdateCollectionRange | ||
DELETE_FROM_COLLECTION : int = 1 [statik]
Indicates a range of items that have been deleted from the collection. | UpdateCollectionRange | ||
INCREMENT_COLLECTION_SIZE : int = 2 [statik]
Indicates an increase in the collection size. | UpdateCollectionRange | ||
INSERT_INTO_COLLECTION : int = 0 [statik]
Indicates a range of items have been inserted into the collection. | UpdateCollectionRange | ||
UPDATE_COLLECTION_SIZE : int = 4 [statik]
Indicates an update to the collection size sent by the server. | UpdateCollectionRange |
identities | özellik |
public var identities:Array
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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 | özellik |
public var position:int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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 | özellik |
public var size:int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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 | özellik |
public var updateType:int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Indicates what operation this range represents. Valid values are:
UpdateCollectionRange.INSERT_INTO_COLLECTION
UpdateCollectionRange.DELETE_FROM_COLLECTION
UpdateCollectionRange.INCREMENT_COLLECTION_SIZE
UpdateCollectionRange.DECREMENT_COLLECTION_SIZE
UpdateCollectionRange.UPDATE_COLLECTION_SIZE
UpdateCollectionRange | () | Yapıcı |
public function UpdateCollectionRange()
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Constructs an empty UpdateCollectionRange.
DECREMENT_COLLECTION_SIZE | Sabit |
public static const DECREMENT_COLLECTION_SIZE:int = 3
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Indicates a derease in the collection size.
The size
property will contain an increase amount
DELETE_FROM_COLLECTION | Sabit |
public static const DELETE_FROM_COLLECTION:int = 1
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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 | Sabit |
public static const INCREMENT_COLLECTION_SIZE:int = 2
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Indicates an increase in the collection size.
The size
property will contain an increase amount
INSERT_INTO_COLLECTION | Sabit |
public static const INSERT_INTO_COLLECTION:int = 0
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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 | Sabit |
public static const UPDATE_COLLECTION_SIZE:int = 4
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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, 01:09 PM Z