套件 | mx.olap |
類別 | public class OLAPResult |
繼承 | OLAPResult Object |
實作 | IOLAPResult |
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
相關 API 元素
mx.olap.OLAPQuery
mx.olap.OLAPQueryAxis
mx.olap.IOLAPResultAxis
mx.olap.OLAPResultAxis
屬性 | 定義自 | ||
---|---|---|---|
axes : Array [唯讀]
An Array of IOLAPResultAxis instances that represent all the axes of the query. | OLAPResult | ||
COLUMN_AXIS : int = 0 [靜態]
Specifies a column axis. | OLAPResult | ||
constructor : Object
類別物件的參照或是特定物件實體的建構函數。 | Object | ||
query : IOLAPQuery
The query whose result is represented by this object. | OLAPResult | ||
ROW_AXIS : int = 1 [靜態]
Specifies a row axis. | OLAPResult | ||
SLICER_AXIS : int = 2 [靜態]
Specifies a slicer axis. | OLAPResult |
屬性 | 定義自 | ||
---|---|---|---|
cellData : Array
An Array of Arrays that contains the value of each cell of the result. | OLAPResult |
方法 | 定義自 | ||
---|---|---|---|
Returns an axis of the query result. | OLAPResult | ||
Returns a cell at the specified location in the query result. | OLAPResult | ||
指出物件是否有已定義的指定屬性。 | Object | ||
Returns true if the row contains data. | OLAPResult | ||
指出 Object 類別的實體是否位於指定為參數的物件原型鏈中。 | Object | ||
指出指定的屬性是否存在,以及是否可列舉。 | Object | ||
為迴圈作業設定動態屬性的可用性。 | Object | ||
傳回代表此物件的字串,根據地區特定慣例進行格式化。 | Object | ||
會傳回指定之物件的字串形式。 | Object | ||
會傳回指定之物件的基本值。 | Object |
axes | 屬性 |
cellData | 屬性 |
protected var cellData:Array
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
An Array of Arrays that contains the value of each cell of the result. A cell is an intersection of a row and a column axis position.
COLUMN_AXIS | 屬性 |
public static var COLUMN_AXIS:int = 0
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Specifies a column axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
query | 屬性 |
query:IOLAPQuery
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
The query whose result is represented by this object.
實作
public function get query():IOLAPQuery
public function set query(value:IOLAPQuery):void
ROW_AXIS | 屬性 |
public static var ROW_AXIS:int = 1
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Specifies a row axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
SLICER_AXIS | 屬性 |
public static var SLICER_AXIS:int = 2
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Specifies a slicer axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
getAxis | () | 方法 |
public function getAxis(axisOrdinal:int):IOLAPResultAxis
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Returns an axis of the query result.
參數
axisOrdinal:int — Specify OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
|
IOLAPResultAxis — The IOLAPQueryAxis instance.
|
getCell | () | 方法 |
public function getCell(x:int, y:int):IOLAPCell
語言版本: | ActionScript 3.0 |
產品版本: | Flex 3 |
執行階段版本: | Flash Player 9, AIR 1.1 |
Returns a cell at the specified location in the query result.
參數
x:int — The column of the query result.
| |
y:int — The row of the query result.
|
IOLAPCell — An IOLAPCell instance representing the cell.
|
hasRowData | () | 方法 |
Tue Jun 12 2018, 03:47 PM Z