Método Insert (Int32, String)
Creates and inserts a CubeDimension, with the specified identifier, into the collection at the specified index.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (em Microsoft.AnalysisServices.dll)
Sintaxe
'Declaração
Public Function Insert ( _
index As Integer, _
dimensionId As String _
) As CubeDimension
'Uso
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
Parâmetros
- index
Tipo: System. . :: . .Int32
The zero-based index at which the new CubeDimension will be inserted.
- dimensionId
Tipo: System. . :: . .String
Valor de retorno
Tipo: Microsoft.AnalysisServices. . :: . .CubeDimension
A new, empty CubeDimension.
Exceções
Exceção | Condição |
---|---|
ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than [H:Microsoft.AnalysisServices.ModelComponentCollection.Count]. |
Consulte também