SubMenuStyleCollection.CopyTo(SubMenuStyle[], Int32) Method

Definition

Copies the contents of a SubMenuStyleCollection collection to an array, starting at a specified array index.

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

Parameters

styleArray
SubMenuStyle[]

The one-dimensional array that is the destination of the SubMenuStyle objects copied from the SubMenuStyleCollection collection. The array must have zero-based indexing.

index
Int32

The zero-based index in array at which copying begins.

Exceptions

array is null.

index is less than zero.

array is multidimensional

-or-

index is greater than or equal to the length of array.

-or-

The number of SubMenuStyle objects in the source SubMenuStyleCollection collection is greater than the available space from the index to the end of the destination array.

Remarks

The SubMenuStyle objects are copied to the destination array in the same order in which the enumerator iterates through the SubMenuStyleCollection collection.

Applies to