ImpactDetailCollection.RemoveAt Method (Int32)
Applies To: SQL Server (starting with 2016)
Removes the ImpactDetail at the specified index from the collection. This class cannot be inherited.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)
Syntax
public void RemoveAt(
int index
)
public:
virtual void RemoveAt(
int index
) sealed
abstract RemoveAt :
index:int -> unit
override RemoveAt :
index:int -> unit
Public Sub RemoveAt (
index As Integer
)
Parameters
index
Type: System.Int32The zero-based index of the ImpactDetail to be removed.
Implements
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