MeasureGroupDimensionCollection.Item[] Property

Definition

Overloads

Item[String]

Gets the MeasureGroupDimension, with the specified CubeDimensionID, from the collection.

Item[Int32]

Gets the MeasureGroupDimension, at the specified index, from the collection.

Item[String]

Gets the MeasureGroupDimension, with the specified CubeDimensionID, from the collection.

public Microsoft.AnalysisServices.MeasureGroupDimension this[string cubeDimensionId] { get; }
member this.Item(string) : Microsoft.AnalysisServices.MeasureGroupDimension
Default Public ReadOnly Property Item(cubeDimensionId As String) As MeasureGroupDimension

Parameters

cubeDimensionId
String

The CubeDimensionID of the MeasureGroupDimension to be returned.

Property Value

The MeasureGroupDimension with the specified CubeDimensionID.

Exceptions

The collection doesn't contain a MeasureGroupDimension with the specified CubeDimensionID.

Applies to

Item[Int32]

Gets the MeasureGroupDimension, at the specified index, from the collection.

public Microsoft.AnalysisServices.MeasureGroupDimension this[int index] { get; }
member this.Item(int) : Microsoft.AnalysisServices.MeasureGroupDimension
Default Public ReadOnly Property Item(index As Integer) As MeasureGroupDimension

Parameters

index
Int32

The zero-based index of the MeasureGroupDimension to be returned.

Property Value

The MeasureGroupDimension at the specified index.

Exceptions

The specified index is not a valid value (less than zero or bigger then the total number of elements).

Applies to