包 | mx.olap |
接口 | public interface IOLAPResult |
实现器 | OLAPResult |
另请参见
属性 | 定义方 | ||
---|---|---|---|
axes : Array [只读 (read-only)] IOLAPResultAxis 实例数组,用于表示查询的所有轴。 | IOLAPResult | ||
query : IOLAPQuery [只读 (read-only)] 由此对象表示结果的查询。 | IOLAPResult |
方法 | 定义方 | ||
---|---|---|---|
返回查询结果的轴。 | IOLAPResult | ||
返回查询结果中的指定位置的单元格。 | IOLAPResult |
axes | 属性 |
query | 属性 |
getAxis | () | 方法 |
public function getAxis(axisOrdinal:int):IOLAPResultAxis
返回查询结果的轴。
参数
axisOrdinal:int —
对列轴指定 OLAPQuery.COLUMN AXIS ,对行轴指定 OLAPQuery.ROW_AXIS ,对切片轴指定 OLAPQuery.SLICER_AXIS 。
|
IOLAPResultAxis — IOLAPQueryAxis 实例。 |
getCell | () | 方法 |
public function getCell(x:int, y:int):IOLAPCell
返回查询结果中的指定位置的单元格。
参数
x:int — 查询结果的列。 | |
y:int — 查询结果的行。 |
IOLAPCell — 表示单元格的 IOLAPCell 实例。 |