Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
Creates and inserts a CubeDimension, with the specified identifier, into the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Function Insert ( _
index As Integer, _
dimensionId As String _
) As CubeDimension
'Usage
Dim instance As CubeDimensionCollection
Dim index As Integer
Dim dimensionId As String
Dim returnValue As CubeDimension
returnValue = instance.Insert(index, dimensionId)
public CubeDimension Insert(
int index,
string dimensionId
)
public:
CubeDimension^ Insert(
int index,
String^ dimensionId
)
member Insert :
index:int *
dimensionId:string -> CubeDimension
public function Insert(
index : int,
dimensionId : String
) : CubeDimension
Parameters
- index
Type: System.Int32
The zero-based index at which the new CubeDimension will be inserted.
- dimensionId
Type: System.String
The identifier of the Dimension to be inserted.
Return Value
Type: Microsoft.AnalysisServices.CubeDimension
A new, empty CubeDimension.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than [H:Microsoft.AnalysisServices.ModelComponentCollection.Count]. |