AggregationDesignDimensionCollection.Insert Method

Definition

Overloads

Insert(Int32, AggregationDesignDimension)

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

Insert(Int32, String)

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

Insert(Int32, AggregationDesignDimension)

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

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

Parameters

index
Int32

The zero-based index at which the AggregationDesignDimension 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 CubeDimensionID of the specified AggregationDesignDimension is not valid in the collection.
  • The compatibility-level of the specified AggregationDesignDimension is not valid in the collection.

Applies to

Insert(Int32, String)

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

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

Parameters

index
Int32

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

cubeDimensionId
String

The CubeDimensionID for the new AggregationDesignDimension object.

Returns

The newly created AggregationDesignDimension object.

Exceptions

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

The specified CubeDimensionID is not valid in the collection.

Applies to