AggregationInstanceMeasureCollection.Insert Method

Definition

Overloads

Insert(Int32, AggregationInstanceMeasure)

Inserts the specified AggregationInstanceMeasure to the collection at the specified index.

Insert(Int32, String)

Creates a new AggregationInstanceMeasure object using the specified MeasureID, inserts it to the collection at the specified index and returns the new AggregationInstanceMeasure created.

Insert(Int32, AggregationInstanceMeasure)

Inserts the specified AggregationInstanceMeasure to the collection at the specified index.

public void Insert (int index, Microsoft.AnalysisServices.AggregationInstanceMeasure item);
override this.Insert : int * Microsoft.AnalysisServices.AggregationInstanceMeasure -> unit
Public Sub Insert (index As Integer, item As AggregationInstanceMeasure)

Parameters

index
Int32

The zero-based index at which the AggregationInstanceMeasure is inserted.

Exceptions

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

  • The specified item is a null reference (Nothing in Visual Basic).
  • The specified item already esists in the collection.
  • The MeasureID of the specified AggregationInstanceMeasure is not valid in the collection.
  • The compatibility-level of the specified AggregationInstanceMeasure is not valid in the collection.

Applies to

Insert(Int32, String)

Creates a new AggregationInstanceMeasure object using the specified MeasureID, inserts it to the collection at the specified index and returns the new AggregationInstanceMeasure created.

public Microsoft.AnalysisServices.AggregationInstanceMeasure Insert (int index, string measureId);
override this.Insert : int * string -> Microsoft.AnalysisServices.AggregationInstanceMeasure
Public Function Insert (index As Integer, measureId As String) As AggregationInstanceMeasure

Parameters

index
Int32

The zero-based index at which the AggregationInstanceMeasure is inserted.

measureId
String

The MeasureID for the new AggregationInstanceMeasure object.

Returns

The newly created AggregationInstanceMeasure object.

Exceptions

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

The specified MeasureID is not valid in the collection.

Applies to