Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Inserts an AggregationDimension into the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Sub Insert ( _
index As Integer, _
item As AggregationDimension _
)
'Usage
Dim instance As AggregationDimensionCollection
Dim index As Integer
Dim item As AggregationDimension
instance.Insert(index, item)
public void Insert(
int index,
AggregationDimension item
)
public:
void Insert(
int index,
AggregationDimension^ item
)
member Insert :
index:int *
item:AggregationDimension -> unit
public function Insert(
index : int,
item : AggregationDimension
)
Parameters
- index
Type: System.Int32
The zero-based index at which the new AggregationDimension will be inserted.
- item
Type: Microsoft.AnalysisServices.AggregationDimension
The AggregationDimension to be inserted.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than [H:Microsoft.AnalysisServices.ModelComponentCollection.Count]. |