ModelComponentCollection.Insert 方法

定义

重载

Insert(IModelComponent, String, Int32)

在 ModelComponentCollection 中插入 IModelComponent。

Insert(IModelComponent, String, Int32, Boolean)

在 ModelComponentCollection 中插入 IModelComponent。

Insert(Int32, ModelComponent)

在 ModelComponentCollection 中插入 ModelComponent。

Insert(IModelComponent, String, Int32)

在 ModelComponentCollection 中插入 IModelComponent。

protected void Insert (Microsoft.AnalysisServices.IModelComponent item, string key, int index);
member this.Insert : Microsoft.AnalysisServices.IModelComponent * string * int -> unit
Protected Sub Insert (item As IModelComponent, key As String, index As Integer)

参数

item
IModelComponent

要插入的项。

key
String

键。

index
Int32

从零开始的索引,应在该位置插入项。

适用于

Insert(IModelComponent, String, Int32, Boolean)

在 ModelComponentCollection 中插入 IModelComponent。

protected void Insert (Microsoft.AnalysisServices.IModelComponent item, string key, int index, bool updateDependents);
member this.Insert : Microsoft.AnalysisServices.IModelComponent * string * int * bool -> unit
Protected Sub Insert (item As IModelComponent, key As String, index As Integer, updateDependents As Boolean)

参数

item
IModelComponent

要插入的项。

key
String

键。

index
Int32

从零开始的索引,应在该位置插入项。

updateDependents
Boolean

指示是否更新依赖关系。

适用于

Insert(Int32, ModelComponent)

在 ModelComponentCollection 中插入 ModelComponent。

protected internal virtual void Insert (int index, Microsoft.AnalysisServices.ModelComponent item);
abstract member Insert : int * Microsoft.AnalysisServices.ModelComponent -> unit
override this.Insert : int * Microsoft.AnalysisServices.ModelComponent -> unit
Protected Friend Overridable Sub Insert (index As Integer, item As ModelComponent)

参数

index
Int32

从零开始的索引,应在该位置插入项。

item
ModelComponent

要插入的项。

适用于