WebPartConnectionCollection.Insert(Int32, WebPartConnection) 方法

定义

将指定的 WebPartConnection 对象添加到集合中的指定索引位置。

public:
 void Insert(int index, System::Web::UI::WebControls::WebParts::WebPartConnection ^ value);
public void Insert (int index, System.Web.UI.WebControls.WebParts.WebPartConnection value);
member this.Insert : int * System.Web.UI.WebControls.WebParts.WebPartConnection -> unit
Public Sub Insert (index As Integer, value As WebPartConnection)

参数

index
Int32

要插入 WebPartConnection 对象的从零开始的索引位置。

value
WebPartConnection

要插入的 WebPartConnection

注解

使用此方法可将指定的 WebPartConnection 对象插入到集合中的指定索引处。 作为替代方法,只需 WebPartConnection 使用方法将对象追加到集合的末尾 Add

适用于