CubeHierarchyCollection.Insert Method

Definition

Overloads

Insert(Int32, String)

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

Insert(Int32, CubeHierarchy)

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

Insert(Int32, String)

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

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

Parameters

index
Int32

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

hierarchyId
String

The HierarchyID for the new CubeHierarchy object.

Returns

The newly created CubeHierarchy object.

Exceptions

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

The specified HierarchyID is not valid in the collection.

Applies to

Insert(Int32, CubeHierarchy)

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

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

Parameters

index
Int32

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

item
CubeHierarchy

The CubeHierarchy to be 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 HierarchyID of the specified CubeHierarchy is not valid in the collection.
  • The compatibility-level of the specified CubeHierarchy is not valid in the collection.

Applies to