ImpactDetailCollection.Item Property (Int32)

 

Applies To: SQL Server 2016 Preview

Gets the ImpactDetail at the specified index from the collection.

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

Syntax

public ImpactDetail this[
    int index
] { get; set; }
public:
property ImpactDetail^ default[
    int index
] {
    ImpactDetail^ get(int index);
    void set(int index, ImpactDetail^ value);
}
member Item : 
        index:int -> ImpactDetail with get, set
Public Property Item (
    index As Integer
) As ImpactDetail

Parameters

Property Value

Type: Microsoft.AnalysisServices.ImpactDetail

The ImpactDetail at the specified index.

Exceptions

Exception Condition
ArgumentOutOfRangeException

index is less than zero.

-or-

index is equal to or greater than Count.

See Also

ImpactDetailCollection Class
Microsoft.AnalysisServices Namespace

Return to top