Метод CubeDimensionCollection.Insert (Int32, String)
Creates and inserts a CubeDimension, with the specified identifier, into the collection at the specified index.
Пространство имен: Microsoft.AnalysisServices
Сборка: Microsoft.AnalysisServices (в Microsoft.AnalysisServices.dll)
Синтаксис
'Декларация
Public Function Insert ( _
index As Integer, _
dimensionId As String _
) As CubeDimension
'Применение
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
Параметры
- index
Тип: System.Int32
The zero-based index at which the new CubeDimension will be inserted.
- dimensionId
Тип: System.String
The identifier of the Dimension to be inserted.
Возвращаемое значение
Тип: Microsoft.AnalysisServices.CubeDimension
A new, empty CubeDimension.
Исключения
Исключение | Условие |
---|---|
ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than [H:Microsoft.AnalysisServices.ModelComponentCollection.Count]. |