| 包 | mx.olap |
| 接口 | public interface IOLAPQueryAxis |
| 实现器 | OLAPQueryAxis |
另请参见
| 属性 | 定义方 | ||
|---|---|---|---|
| sets : Array [只读 (read-only)] 查询轴的所有集,作为 IOLAPSet 实例数组。 | IOLAPQueryAxis | ||
| tuples : Array [只读 (read-only)] 添加到查询轴的所有 tuple,作为 IOLAPTuple 实例数组。 | IOLAPQueryAxis | ||
| 方法 | 定义方 | ||
|---|---|---|---|
将单个成员添加到查询轴中。 | IOLAPQueryAxis | ||
将集添加到查询轴中。 | IOLAPQueryAxis | ||
将 tuple 添加到查询轴中。 | IOLAPQueryAxis | ||
| sets | 属性 |
sets:Array [只读 (read-only)]
查询轴的所有集,作为 IOLAPSet 实例数组。此数组包括使用 addMember() 和 addTuple() 方法添加的集。
public function get sets():Array| tuples | 属性 |
tuples:Array [只读 (read-only)]
添加到查询轴的所有 tuple,作为 IOLAPTuple 实例数组。此数组包括使用 addMember() 和 addSet() 方法添加的 tuple。
public function get tuples():Array| addMember | () | 方法 |
public function addMember(s:IOLAPMember):void将单个成员添加到查询轴中。该成员会自动转换为 IOLPASet 实例。将成员添加到切片轴中时使用此方法。
参数
s:IOLAPMember — 要添加到查询中的成员。 |
| addSet | () | 方法 |
public function addSet(s:IOLAPSet):void将集添加到查询轴中。该集会定义为查询轴提供信息的成员和 tuple。
参数
s:IOLAPSet — 要添加到查询中的集。 |
| addTuple | () | 方法 |
public function addTuple(t:IOLAPTuple):void将 tuple 添加到查询轴中。tuple 会自动转换为 IOLPASet 实例。
参数
t:IOLAPTuple — 要添加到查询中的 tuple。 |