WebPartDisplayModeCollection.CopyTo(WebPartDisplayMode[], Int32) Method

Definition

Copies the collection to an array of WebPartDisplayMode objects.

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

Parameters

array
WebPartDisplayMode[]

An array of WebPartDisplayMode objects to contain the copied collection.

index
Int32

An integer that indicates the starting point in the array at which to place the collection contents.

Remarks

The CopyTo method is useful when you want to create a custom array to programmatically manipulate a set of WebPartDisplayMode objects.

Applies to

See also