WebPartConnectionCollection.Insert(Int32, WebPartConnection) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified WebPartConnection object to the collection at the specified index location.
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)
Parameters
- index
- Int32
The zero-based index location at which to insert the WebPartConnection.
- value
- WebPartConnection
The WebPartConnection to insert.
Remarks
Use this method to insert the specified WebPartConnection object in the collection at the specified index. As an alternative, you can simply append a WebPartConnection object to the end of the collection using the Add method.