AggregationInstanceDimensionCollection.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Remove(AggregationInstanceDimension) |
Removes the specified AggregationInstanceDimension from the collection. |
Remove(String) |
Removes the AggregationInstanceDimension with the specified CubeDimensionID from the collection. |
Remove(AggregationInstanceDimension, Boolean) |
Removes the specified AggregationInstanceDimension from the collection. |
Remove(String, Boolean) |
Removes the AggregationInstanceDimension with the specified CubeDimensionID from the collection. |
Remove(AggregationInstanceDimension)
Removes the specified AggregationInstanceDimension from the collection.
public void Remove (Microsoft.AnalysisServices.AggregationInstanceDimension item);
override this.Remove : Microsoft.AnalysisServices.AggregationInstanceDimension -> unit
Public Sub Remove (item As AggregationInstanceDimension)
Parameters
The AggregationInstanceDimension to be removed.
Exceptions
The specified item is a null reference (Nothing in Visual Basic).
Applies to
Remove(String)
Removes the AggregationInstanceDimension 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 AggregationInstanceDimension to be removed.
Applies to
Remove(AggregationInstanceDimension, Boolean)
Removes the specified AggregationInstanceDimension from the collection.
public void Remove (Microsoft.AnalysisServices.AggregationInstanceDimension item, bool cleanUp);
override this.Remove : Microsoft.AnalysisServices.AggregationInstanceDimension * bool -> unit
Public Sub Remove (item As AggregationInstanceDimension, cleanUp As Boolean)
Parameters
The AggregationInstanceDimension 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 AggregationInstanceDimension 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 AggregationInstanceDimension 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.