PerspectiveDimensionCollection.Remove Method

Definition

Overloads

Remove(PerspectiveDimension)

Removes the specified PerspectiveDimension from the collection.

Remove(String)

Removes the PerspectiveDimension with the specified CubeDimensionID from the collection.

Remove(PerspectiveDimension, Boolean)

Removes the specified PerspectiveDimension from the collection.

Remove(String, Boolean)

Removes the PerspectiveDimension with the specified CubeDimensionID from the collection.

Remove(PerspectiveDimension)

Removes the specified PerspectiveDimension from the collection.

public void Remove (Microsoft.AnalysisServices.PerspectiveDimension item);
override this.Remove : Microsoft.AnalysisServices.PerspectiveDimension -> unit
Public Sub Remove (item As PerspectiveDimension)

Parameters

item
PerspectiveDimension

The PerspectiveDimension to be removed.

Exceptions

The specified item is a null reference (Nothing in Visual Basic).

Applies to

Remove(String)

Removes the PerspectiveDimension with the specified CubeDimensionID from the collection.

public void Remove (string cubeDimensionId);
override this.Remove : string -> unit
Public Sub Remove (cubeDimensionId As String)

Parameters

cubeDimensionId
String

The CubeDimensionID of the PerspectiveDimension to be removed.

Applies to

Remove(PerspectiveDimension, Boolean)

Removes the specified PerspectiveDimension from the collection.

public void Remove (Microsoft.AnalysisServices.PerspectiveDimension item, bool cleanUp);
override this.Remove : Microsoft.AnalysisServices.PerspectiveDimension * bool -> unit
Public Sub Remove (item As PerspectiveDimension, cleanUp As Boolean)

Parameters

item
PerspectiveDimension

The PerspectiveDimension to be removed.

cleanUp
Boolean

True, if referencing objects are to be deleted; otherwise, false.

Exceptions

The specified item is a null reference (Nothing in Visual Basic).

Remarks

This API supports the product infrastructure and is not intended to be used directly from your code.

Applies to

Remove(String, Boolean)

Removes the PerspectiveDimension with the specified CubeDimensionID from the collection.

public void Remove (string cubeDimensionId, bool cleanUp);
override this.Remove : string * bool -> unit
Public Sub Remove (cubeDimensionId As String, cleanUp As Boolean)

Parameters

cubeDimensionId
String

The CubeDimensionID of the PerspectiveDimension to be removed.

cleanUp
Boolean

True, if referencing objects are to be deleted; otherwise, false.

Remarks

This API supports the product infrastructure and is not intended to be used directly from your code.

Applies to