PerspectiveActionCollection.Remove Method

Definition

Overloads

Remove(PerspectiveAction)

Removes the specified PerspectiveAction from the collection.

Remove(String)

Removes the PerspectiveAction with the specified ActionID from the collection.

Remove(PerspectiveAction, Boolean)

Removes the specified PerspectiveAction from the collection.

Remove(String, Boolean)

Removes the PerspectiveAction with the specified ActionID from the collection.

Remove(PerspectiveAction)

Removes the specified PerspectiveAction from the collection.

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

Parameters

item
PerspectiveAction

The PerspectiveAction to be removed.

Exceptions

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

Applies to

Remove(String)

Removes the PerspectiveAction with the specified ActionID from the collection.

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

Parameters

actionId
String

The ActionID of the PerspectiveAction to be removed.

Applies to

Remove(PerspectiveAction, Boolean)

Removes the specified PerspectiveAction from the collection.

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

Parameters

item
PerspectiveAction

The PerspectiveAction 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 PerspectiveAction with the specified ActionID from the collection.

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

Parameters

actionId
String

The ActionID of the PerspectiveAction 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