패키지 | 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:17 PM Z