| Pacchetto | mx.data |
| Classe | public final class PageInformation |
| Ereditarietà | PageInformation Object |
| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà pubbliche
| Proprietà | Definito da | ||
|---|---|---|---|
![]() | constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | |
| loadedPages : Object [sola lettura]
The loaded page information for the collection. | PageInformation | ||
| pageCount : int [sola lettura]
The current number of pages in the collection. | PageInformation | ||
| pageSize : int [sola lettura]
The current page size for the collection. | PageInformation | ||
Metodi pubblici
| Metodo | Definito da | ||
|---|---|---|---|
Constructor. | PageInformation | ||
![]() |
Indica se per un oggetto è definita una proprietà specifica. | Object | |
![]() |
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | |
![]() |
Indica se la proprietà specificata esiste ed è enumerabile. | Object | |
![]() |
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | |
![]() |
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | |
![]() |
Restituisce il valore di base dell'oggetto specificato. | Object | |
Descrizione delle proprietà
loadedPages | proprietà |
loadedPages:Object [sola lettura] | Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
The loaded page information for the collection. This is a sparse array that contains only entries for pages that are loaded.
Implementazione
public function get loadedPages():ObjectEsempio ( Come utilizzare questo esempio )
var pagesLoaded:Array = []
for (var i:int in pageInfo.loadedPages)
pagesLoaded.push(i);
trace("pages loaded: "+pagesLoaded.join());
pageCount | proprietà |
pageSize | proprietà |
Descrizione della funzione di costruzione
PageInformation | () | Funzione di costruzione |
public function PageInformation(pageSize:int, pageCount:int, loadedPages:Object)| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
ParametripageSize:int — The page size for the collection.
| |
pageCount:int — The number of pages in the collection.
| |
loadedPages:Object — The loaded page information for the collection.
|
var pageInfo:PageInformation = myDataService.getPageInformation(myCollection);
trace("current page size: "+pageInfo.pageSize);
trace("current page count: "+pageInfo.pageCount);
var pagesLoaded:Array = []
for (var i:int in pageInfo.loadedPages)
pagesLoaded.push(i);
trace("pages loaded: "+pagesLoaded.join());
Tue Jun 12 2018, 02:44 PM Z
Nascondi proprietà pubbliche ereditate
Mostra proprietà pubbliche ereditate