AggregationInstanceDimensionCollection.Item[] Property

Definition

Overloads

Item[String]

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

Item[Int32]

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

Item[String]

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

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

Parameters

cubeDimensionId
String

The CubeDimensionID of the AggregationInstanceDimension to be returned.

Property Value

The AggregationInstanceDimension with the specified CubeDimensionID.

Exceptions

The collection doesn't contain an AggregationInstanceDimension with the specified CubeDimensionID.

Applies to

Item[Int32]

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

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

Parameters

index
Int32

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

Property Value

The AggregationInstanceDimension 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