AggregationDesignDimensionCollection.Item[] Property

Definition

Overloads

Item[String]

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

Item[Int32]

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

Item[String]

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

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

Parameters

cubeDimensionId
String

The CubeDimensionID of the AggregationDesignDimension to be returned.

Property Value

The AggregationDesignDimension with the specified CubeDimensionID.

Exceptions

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

Applies to

Item[Int32]

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

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

Parameters

index
Int32

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

Property Value

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