TranslationCollection.Insert Method (Int32, Translation)

 

Applies To: SQL Server (starting with 2016)

Inserts a Translation into the collection at the specified index.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

public void Insert(
    int index,
    Translation item
)
public:
void Insert(
    int index,
    Translation^ item
)
member Insert : 
        index:int *
        item:Translation -> unit
Public Sub Insert (
    index As Integer,
    item As Translation
)

Parameters

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.-or-index is equal to or greater than Count.

See Also

Insert Overload
TranslationCollection Class
Microsoft.AnalysisServices Namespace

Return to top