MeasureGroupAttributeCollection.Remove Method

Definition

Overloads

Remove(MeasureGroupAttribute)

Removes the specified MeasureGroupAttribute from the collection.

Remove(String)

Removes the MeasureGroupAttribute with the specified AttributeID from the collection.

Remove(MeasureGroupAttribute, Boolean)

Removes the specified MeasureGroupAttribute from the collection.

Remove(String, Boolean)

Removes the MeasureGroupAttribute with the specified AttributeID from the collection.

Remove(MeasureGroupAttribute)

Removes the specified MeasureGroupAttribute from the collection.

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

Parameters

Exceptions

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

Applies to

Remove(String)

Removes the MeasureGroupAttribute with the specified AttributeID from the collection.

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

Parameters

attributeId
String

The AttributeID of the MeasureGroupAttribute to be removed.

Applies to

Remove(MeasureGroupAttribute, Boolean)

Removes the specified MeasureGroupAttribute from the collection.

public void Remove (Microsoft.AnalysisServices.MeasureGroupAttribute item, bool cleanUp);
override this.Remove : Microsoft.AnalysisServices.MeasureGroupAttribute * bool -> unit
Public Sub Remove (item As MeasureGroupAttribute, 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(String, Boolean)

Removes the MeasureGroupAttribute with the specified AttributeID from the collection.

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

Parameters

attributeId
String

The AttributeID of the MeasureGroupAttribute 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