共用方式為


AggregationAttributeCollection.Insert 方法

定義

多載

Insert(Int32, AggregationAttribute)

將指定的 AggregationAttribute 插入集合中指定的索引位置。

Insert(Int32, String)

使用指定的 AttributeID 建立新的 AggregationAttribute 物件,然後將其插入至集合中指定的索引位置,並傳回新建立的 AggregationAttribute。

Insert(Int32, AggregationAttribute)

將指定的 AggregationAttribute 插入集合中指定的索引位置。

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

參數

index
Int32

以零為基底的索引,這是插入 AggregationAttribute 之處。

例外狀況

指定的索引不是有效的值 (小於零或大於項目總數)。

  • 指定的項目為 Null 參考 (Visual Basic 中的 Nothing)。
  • 指定的項目已存在於集合中。
  • 指定的 AggregationAttribute AttributeID 在集合中無效。
  • 指定的 AggregationAttribute 相容性層級在集合中無效。

適用於

Insert(Int32, String)

使用指定的 AttributeID 建立新的 AggregationAttribute 物件,然後將其插入至集合中指定的索引位置,並傳回新建立的 AggregationAttribute。

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

參數

index
Int32

以零為基底的索引,這是插入 AggregationAttribute 之處。

attributeId
String

AggregationAttribute 物件的 AttributeID。

傳回

新建立的 AggregationAttribute 物件。

例外狀況

指定的索引不是有效的值 (小於零或大於項目總數)。

指定的 AttributeID 在集合中無效。

適用於