包 | mx.olap |
类 | public class OLAPElement |
继承 | OLAPElement Proxy Object |
实现 | IOLAPElement |
子类 | OLAPDimension, OLAPHierarchy, OLAPLevel, OLAPMember |
The <mx:OLAPElement>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPElement Properties dimensions="" name="" />
另请参见
属性 | 定义方 | ||
---|---|---|---|
constructor : Object
对类对象或给定对象实例的构造函数的引用。 | Object | ||
dimension : IOLAPDimension 此元素所属的维度。 | OLAPElement | ||
displayName : String OLAP 元素的名称,可作为 String 显示。 | OLAPElement | ||
name : String OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。 | OLAPElement | ||
prototype : Object [静态]
对类或函数对象的原型对象的引用。 | Object | ||
uniqueName : String [只读 (read-only)] 多维数据集中 OLAP 元素的唯一名称。 | OLAPElement |
方法 | 定义方 | ||
---|---|---|---|
构造函数 | OLAPElement | ||
指示对象是否已经定义了指定的属性。 | Object | ||
指示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
指示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
返回该元素的唯一名称。 | OLAPElement | ||
返回指定对象的原始值。 | Object |
dimension | 属性 |
dimension:IOLAPDimension
[读写] 此元素所属的维度。
public function get dimension():IOLAPDimension
public function set dimension(value:IOLAPDimension):void
displayName | 属性 |
displayName:String
[读写] OLAP 元素的名称,可作为 String 显示。
public function get displayName():String
public function set displayName(value:String):void
name | 属性 |
name:String
[读写] OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。例如,“Time_Year”是 OLAP 元素的名称,其中“Year”是 OLAP 架构中“Time”维度的级别。
public function get name():String
public function set name(value:String):void
uniqueName | 属性 |
uniqueName:String
[只读 (read-only)] 多维数据集中 OLAP 元素的唯一名称。例如,“[Time][Year][2007]”是一个唯一名称,其中 2007 是属于“Time”维度的“Year”级别的元素名称。
public function get uniqueName():String
OLAPElement | () | 构造函数 |
public function OLAPElement(name:String = null, displayName:String = null)
构造函数
参数name:String (default = null ) — OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。例如,“Time_Year”,其中“Year”是 OLAP 架构中“Time”维度的级别。 | |
displayName:String (default = null ) — OLAP 元素的名称,可作为 String 显示。 |
toString | () | 方法 |