AggregationDesignDimensionCollection.Insert 方法

定义

重载

Insert(Int32, AggregationDesignDimension)

将指定的 AggregationDesignDimension 插入到集合中的指定索引处。

Insert(Int32, String)

使用指定的 CubeDimensionID 创建一个新的 AggregationDesignDimension 对象,将其插入到此集合中的指定索引处,并返回新创建的 AggregationDesignDimension。

Insert(Int32, AggregationDesignDimension)

将指定的 AggregationDesignDimension 插入到集合中的指定索引处。

public void Insert (int index, Microsoft.AnalysisServices.AggregationDesignDimension item);
override this.Insert : int * Microsoft.AnalysisServices.AggregationDesignDimension -> unit
Public Sub Insert (index As Integer, item As AggregationDesignDimension)

参数

index
Int32

插入 AggregationDesignDimension 时所在的从零开始的索引。

例外

指定的索引不是有效值(小于零或大于元素总数)。

适用于

Insert(Int32, String)

使用指定的 CubeDimensionID 创建一个新的 AggregationDesignDimension 对象,将其插入到此集合中的指定索引处,并返回新创建的 AggregationDesignDimension。

public Microsoft.AnalysisServices.AggregationDesignDimension Insert (int index, string cubeDimensionId);
override this.Insert : int * string -> Microsoft.AnalysisServices.AggregationDesignDimension
Public Function Insert (index As Integer, cubeDimensionId As String) As AggregationDesignDimension

参数

index
Int32

插入 AggregationDesignDimension 时所在的从零开始的索引。

cubeDimensionId
String

新的 AggregationDesignDimension 对象的 CubeDimensionID。

返回

新创建的 AggregationDesignDimension 对象。

例外

指定的索引不是有效值(小于零或大于元素总数)。

指定的 CubeDimensionID 在集合中无效。

适用于