PerspectiveMeasureCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Item[String] |
从集合中获取具有指定 MeasureID 的 PerspectiveMeasure。 |
Item[Int32] |
从集合中的指定索引处获取 PerspectiveMeasure。 |
Item[String]
从集合中获取具有指定 MeasureID 的 PerspectiveMeasure。
public Microsoft.AnalysisServices.PerspectiveMeasure this[string measureId] { get; }
member this.Item(string) : Microsoft.AnalysisServices.PerspectiveMeasure
Default Public ReadOnly Property Item(measureId As String) As PerspectiveMeasure
参数
- measureId
- String
要返回的 PerspectiveMeasure 的 MeasureID。
属性值
PerspectiveMeasure具有指定的 MeasureID。
例外
集合中不包含具有指定 MeasureID 的 PerspectiveMeasure。
适用于
Item[Int32]
从集合中的指定索引处获取 PerspectiveMeasure。
public Microsoft.AnalysisServices.PerspectiveMeasure this[int index] { get; }
member this.Item(int) : Microsoft.AnalysisServices.PerspectiveMeasure
Default Public ReadOnly Property Item(index As Integer) As PerspectiveMeasure
参数
- index
- Int32
要返回的 PerspectiveMeasure 的从零开始的索引。
属性值
指定索引处的 PerspectiveMeasure。
例外
指定的索引不是有效值(小于零或大于元素总数)。