WebPartDescriptionCollection.CopyTo(WebPartDescription[], Int32) Method

Definition

Copies the collection to an array of WebPartDescription objects.

public:
 void CopyTo(cli::array <System::Web::UI::WebControls::WebParts::WebPartDescription ^> ^ array, int index);
public void CopyTo (System.Web.UI.WebControls.WebParts.WebPartDescription[] array, int index);
member this.CopyTo : System.Web.UI.WebControls.WebParts.WebPartDescription[] * int -> unit
Public Sub CopyTo (array As WebPartDescription(), index As Integer)

Parameters

array
WebPartDescription[]

An array of WebPartDescription objects to contain the copied collection.

index
Int32

The starting point in the array at which to place the collection contents.

Remarks

The CopyTo method is useful when you want to assemble a custom array that can contain the WebPartDescription objects in the WebPartDescriptionCollection collection.

Applies to

See also