套件 | mx.data |
類別 | public final class PageInformation |
繼承 | PageInformation Object |
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
公用屬性
屬性 | 定義自 | ||
---|---|---|---|
constructor : Object
類別物件的參照或是特定物件實體的建構函數。 | Object | ||
loadedPages : Object [唯讀]
The loaded page information for the collection. | PageInformation | ||
pageCount : int [唯讀]
The current number of pages in the collection. | PageInformation | ||
pageSize : int [唯讀]
The current page size for the collection. | PageInformation |
公用方法
方法 | 定義自 | ||
---|---|---|---|
Constructor. | PageInformation | ||
指出物件是否有已定義的指定屬性。 | Object | ||
指出 Object 類別的實體是否位於指定為參數的物件原型鏈中。 | Object | ||
指出指定的屬性是否存在,以及是否可列舉。 | Object | ||
為迴圈作業設定動態屬性的可用性。 | Object | ||
傳回代表此物件的字串,根據地區特定慣例進行格式化。 | Object | ||
會傳回指定之物件的字串形式。 | Object | ||
會傳回指定之物件的基本值。 | Object |
屬性詳細資訊
loadedPages | 屬性 |
loadedPages:Object
[唯讀] 語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | 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.
實作
public function get loadedPages():Object
範例 ( 如何使用本範例 )
var pagesLoaded:Array = [] for (var i:int in pageInfo.loadedPages) pagesLoaded.push(i); trace("pages loaded: "+pagesLoaded.join());
pageCount | 屬性 |
pageSize | 屬性 |
建構函式詳細資料
PageInformation | () | 建構函式 |
public function PageInformation(pageSize:int, pageCount:int, loadedPages:Object)
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Constructor.
參數pageSize: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, 03:47 PM Z