Méthode CubeDimensionCollection.Insert (Int32, String)
Creates and inserts a CubeDimension, with the specified identifier, into the collection at the specified index.
Espace de noms : Microsoft.AnalysisServices
Assembly : Microsoft.AnalysisServices (en Microsoft.AnalysisServices.dll)
Syntaxe
'Déclaration
Public Function Insert ( _
index As Integer, _
dimensionId As String _
) As CubeDimension
'Utilisation
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
Paramètres
- 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.
Valeur de retour
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]. |