PerspectiveCalculationCollection.Remove Method

Definition

Overloads

Remove(PerspectiveCalculation, Boolean)

Removes the specified PerspectiveCalculation from the collection.

Remove(PerspectiveCalculation)

Removes the specified PerspectiveCalculation from the collection.

Remove(String)

Removes the PerspectiveCalculation with the specified name from the collection.

Remove(String, Boolean)

Removes the PerspectiveCalculation with the specified name from the collection.

Remove(PerspectiveCalculation, Boolean)

Removes the specified PerspectiveCalculation from the collection.

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

Parameters

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(PerspectiveCalculation)

Removes the specified PerspectiveCalculation from the collection.

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

Parameters

Exceptions

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

Applies to

Remove(String)

Removes the PerspectiveCalculation with the specified name from the collection.

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

Parameters

name
String

The name of the PerspectiveCalculation to be removed.

Applies to

Remove(String, Boolean)

Removes the PerspectiveCalculation with the specified name from the collection.

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

Parameters

name
String

The name of the PerspectiveCalculation 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