Paket | mx.olap |
Sınıf | public class OLAPResult |
Miras Alma | OLAPResult Object |
Uygular | IOLAPResult |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
İlgili API Öğeleri
mx.olap.OLAPQuery
mx.olap.OLAPQueryAxis
mx.olap.IOLAPResultAxis
mx.olap.OLAPResultAxis
Özellik | Tanımlayan: | ||
---|---|---|---|
axes : Array [salt okunur]
An Array of IOLAPResultAxis instances that represent all the axes of the query. | OLAPResult | ||
COLUMN_AXIS : int = 0 [statik]
Specifies a column axis. | OLAPResult | ||
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
query : IOLAPQuery
The query whose result is represented by this object. | OLAPResult | ||
ROW_AXIS : int = 1 [statik]
Specifies a row axis. | OLAPResult | ||
SLICER_AXIS : int = 2 [statik]
Specifies a slicer axis. | OLAPResult |
Özellik | Tanımlayan: | ||
---|---|---|---|
cellData : Array
An Array of Arrays that contains the value of each cell of the result. | OLAPResult |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Returns an axis of the query result. | OLAPResult | ||
Returns a cell at the specified location in the query result. | OLAPResult | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Returns true if the row contains data. | OLAPResult | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
axes | özellik |
cellData | özellik |
protected var cellData:Array
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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 | özellik |
public static var COLUMN_AXIS:int = 0
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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 | özellik |
query:IOLAPQuery
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
The query whose result is represented by this object.
Uygulama
public function get query():IOLAPQuery
public function set query(value:IOLAPQuery):void
ROW_AXIS | özellik |
public static var ROW_AXIS:int = 1
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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 | özellik |
public static var SLICER_AXIS:int = 2
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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 | () | yöntem |
public function getAxis(axisOrdinal:int):IOLAPResultAxis
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns an axis of the query result.
Parametreler
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 | () | yöntem |
public function getCell(x:int, y:int):IOLAPCell
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns a cell at the specified location in the query result.
Parametreler
x:int — The column of the query result.
| |
y:int — The row of the query result.
|
IOLAPCell — An IOLAPCell instance representing the cell.
|
hasRowData | () | yöntem |
public function hasRowData(rowIndex:int):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns true
if the row contains data.
Parametreler
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, 01:09 PM Z