Pakiet | mx.olap |
Klasa | public class OLAPResult |
Dziedziczenie | OLAPResult Object |
Implementuje | IOLAPResult |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Powiązane elementy interfejsu API
mx.olap.OLAPQuery
mx.olap.OLAPQueryAxis
mx.olap.IOLAPResultAxis
mx.olap.OLAPResultAxis
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
axes : Array [tylko do odczytu]
An Array of IOLAPResultAxis instances that represent all the axes of the query. | OLAPResult | ||
COLUMN_AXIS : int = 0 [statyczny]
Specifies a column axis. | OLAPResult | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
query : IOLAPQuery
The query whose result is represented by this object. | OLAPResult | ||
ROW_AXIS : int = 1 [statyczny]
Specifies a row axis. | OLAPResult | ||
SLICER_AXIS : int = 2 [statyczny]
Specifies a slicer axis. | OLAPResult |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
cellData : Array
An Array of Arrays that contains the value of each cell of the result. | OLAPResult |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Returns an axis of the query result. | OLAPResult | ||
Returns a cell at the specified location in the query result. | OLAPResult | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Returns true if the row contains data. | OLAPResult | ||
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 |
axes | właściwość |
cellData | właściwość |
protected var cellData:Array
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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 | właściwość |
public static var COLUMN_AXIS:int = 0
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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 | właściwość |
query:IOLAPQuery
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The query whose result is represented by this object.
Implementacja
public function get query():IOLAPQuery
public function set query(value:IOLAPQuery):void
ROW_AXIS | właściwość |
public static var ROW_AXIS:int = 1
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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 | właściwość |
public static var SLICER_AXIS:int = 2
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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 | () | metoda |
public function getAxis(axisOrdinal:int):IOLAPResultAxis
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns an axis of the query result.
Parametry
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 | () | metoda |
public function getCell(x:int, y:int):IOLAPCell
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns a cell at the specified location in the query result.
Parametry
x:int — The column of the query result.
| |
y:int — The row of the query result.
|
IOLAPCell — An IOLAPCell instance representing the cell.
|
hasRowData | () | metoda |
public function hasRowData(rowIndex:int):Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns true
if the row contains data.
Parametry
rowIndex:int — The index of the row in the result.
|
Boolean — true if the row contains data,
and false if not.
|
Tue Jun 12 2018, 12:06 PM Z