CalculationPropertyCollection.Remove Method

Definition

Overloads

Remove(CalculationProperty)

Removes the specified CalculationProperty from the collection.

Remove(String)

Removes the CalculationProperty with the specified Calculation-Reference from the collection.

Remove(CalculationProperty, Boolean)

Removes the specified CalculationProperty from the collection.

Remove(String, Boolean)

Removes the CalculationProperty with the specified Calculation-Reference from the collection.

Remove(CalculationProperty)

Removes the specified CalculationProperty from the collection.

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

Parameters

item
CalculationProperty

The CalculationProperty to be removed.

Exceptions

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

Applies to

Remove(String)

Removes the CalculationProperty with the specified Calculation-Reference from the collection.

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

Parameters

calculationReference
String

The Calculation-Reference of the CalculationProperty to be removed.

Applies to

Remove(CalculationProperty, Boolean)

Removes the specified CalculationProperty from the collection.

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

Parameters

item
CalculationProperty

The CalculationProperty 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 CalculationProperty with the specified Calculation-Reference from the collection.

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

Parameters

calculationReference
String

The Calculation-Reference of the CalculationProperty 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