TranslationCollection.Remove Method

Definition

Overloads

Remove(Translation)

Removes the specified Translation from the collection.

Remove(Int32)

Removes the Translation with the specified language from the collection.

Remove(Translation, Boolean)

Removes the specified Translation from the collection.

Remove(Int32, Boolean)

Removes the Translation with the specified language from the collection.

Remove(Translation)

Removes the specified Translation from the collection.

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

Parameters

item
Translation

The Translation to be removed.

Exceptions

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

Applies to

Remove(Int32)

Removes the Translation with the specified language from the collection.

public void Remove (int language);
override this.Remove : int -> unit
Public Sub Remove (language As Integer)

Parameters

language
Int32

The language of the Translation to be removed.

Applies to

Remove(Translation, Boolean)

Removes the specified Translation from the collection.

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

Parameters

item
Translation

The Translation 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(Int32, Boolean)

Removes the Translation with the specified language from the collection.

public void Remove (int language, bool cleanUp);
override this.Remove : int * bool -> unit
Public Sub Remove (language As Integer, cleanUp As Boolean)

Parameters

language
Int32

The language of the Translation 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