| 包 | mx.olap |
| 类 | public class OLAPSchema |
| 继承 | OLAPSchema Object |
| 实现 | IOLAPSchema |
隐藏 MXML 语法
The <mx:OLAPSchema> tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPSchema
Properties
cubeArray=""
/>
默认 MXML 属性cubeArray
另请参见
| 属性 | 定义方 | ||
|---|---|---|---|
![]() | constructor : Object
对类对象或给定对象实例的构造函数的引用。 | Object | |
| cubeArray : Array [只写] 让您通过传递 IOLAPCube 实例数组来设置架构的多维数据集。 | OLAPSchema | ||
| cubes : IList 此架构已知的所有多维数据集,作为 IOLAPCube 实例列表。 | OLAPSchema | ||
![]() | prototype : Object [静态]
对类或函数对象的原型对象的引用。 | Object | |
| 方法 | 定义方 | ||
|---|---|---|---|
从架构创建 OLAP 多维数据集。 | OLAPSchema | ||
返回按名称指定的多维数据集。 | OLAPSchema | ||
![]() |
指示对象是否已经定义了指定的属性。 | Object | |
![]() |
指示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | |
![]() |
指示指定的属性是否存在、是否可枚举。 | Object | |
![]() |
设置循环操作动态属性的可用性。 | Object | |
![]() |
返回指定对象的字符串表示形式。 | Object | |
![]() |
返回指定对象的原始值。 | Object | |
| cubeArray | 属性 |
cubeArray:Array [只写] 让您通过传递 IOLAPCube 实例数组来设置架构的多维数据集。
public function set cubeArray(value:Array):void| cubes | 属性 |
cubes:IList [读写] 此架构已知的所有多维数据集,作为 IOLAPCube 实例列表。返回的列表可能表示远程数据,因此可以引发 ItemPendingError。
public function get cubes():IList public function set cubes(value:IList):void| createCube | () | 方法 |
public function createCube(name:String):IOLAPCube从架构创建 OLAP 多维数据集。
参数
name:String — 多维数据集的名称。 |
IOLAPCube — IOLAPCube 实例。 |
| getCube | () | 方法 |
public function getCube(name:String):IOLAPCube返回按名称指定的多维数据集。
参数
name:String — 多维数据集的名称。 |
IOLAPCube — IOLAPCube 实例,或者如果一个也未找到则为 null。 |