((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Interfacepublic interface IOLAPResult
ImplementorsOLAPResult

The IOLAPResult interface represents the result of a query on an OLAP cube.

Veja também

mx.olap.OLAPQuery
mx.olap.OLAPQueryAxis
mx.olap.IOLAPResultAxis
mx.olap.OLAPResultAxis
mx.olap.OLAPResult


Propriedades Públicas
 PropriedadeDefinido por
  axes : Array
[read-only] An Array of IOLAPResultAxis instances that represent all the axes of the query.
IOLAPResult
  query : IOLAPQuery
[read-only] The query whose result is represented by this object.
IOLAPResult
Métodos Públicos
 MétodoDefinido por
  
getAxis(axisOrdinal:int):IOLAPResultAxis
Returns an axis of the query result.
IOLAPResult
  
Returns a cell at the specified location in the query result.
IOLAPResult
Detalhes da propriedade
axespropriedade
axes:Array  [read-only]

An Array of IOLAPResultAxis instances that represent all the axes of the query.


Implementação
    public function get axes():Array
querypropriedade 
query:IOLAPQuery  [read-only]

The query whose result is represented by this object.


Implementação
    public function get query():IOLAPQuery
Detalhes do método
getAxis()método
public function getAxis(axisOrdinal:int):IOLAPResultAxis

Returns an axis of the query result.

Parâmetros

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.

Retorna
IOLAPResultAxis — The IOLAPQueryAxis instance.
getCell()método 
public function getCell(x:int, y:int):IOLAPCell

Returns a cell at the specified location in the query result.

Parâmetros

x:int — The column of the query result.
 
y:int — The row of the query result.

Retorna
IOLAPCell — An IOLAPCell instance representing the cell.