AttributeTranslationCollection.Item Property (Int32)

 

Applies To: SQL Server 2016 Preview

Gets the AttributeTranslation at the specified index from the collection.

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

Syntax

public AttributeTranslation this[
    int index
] { get; }
public:
property AttributeTranslation^ default[
    int index
] {
    AttributeTranslation^ get(int index);
}
member Item : 
        index:int -> AttributeTranslation with get
Public ReadOnly Property Item (
    index As Integer
) As AttributeTranslation

Parameters

Property Value

Type: Microsoft.AnalysisServices.AttributeTranslation

The AttributeTranslation at the specified index.

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.

-or-

index is greater than or equal to the number of AttributeTranslation in the collection.

See Also

AttributeTranslationCollection Class
Microsoft.AnalysisServices Namespace

Return to top