CalculationPropertyCollection.Item[] Property

Definition

Overloads

Item[String]

Gets the CalculationProperty, with the specified Calculation-Reference, from the collection.

Item[Int32]

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

Item[String]

Gets the CalculationProperty, with the specified Calculation-Reference, from the collection.

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

Parameters

calculationReference
String

The Calculation-Reference of the CalculationProperty to be returned.

Property Value

The CalculationProperty with the specified Calculation-Reference.

Exceptions

The collection doesn't contain a CalculationProperty with the specified Calculation-Reference.

Applies to

Item[Int32]

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

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

Parameters

index
Int32

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

Property Value

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