This documentation is archived and is not being maintained.

SubMenuStyleCollection::CopyTo Method (array<SubMenuStyle>, Int32)

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

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
void CopyTo(
	array<SubMenuStyle^>^ styleArray, 
	int index
)

Parameters

styleArray
Type: array<System.Web.UI.WebControls::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
Type: System::Int32
The zero-based index in array at which copying begins.

ExceptionCondition
ArgumentNullException

array is nullptr.

IndexOutOfRangeException

index is less than zero.

ArgumentException

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.

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

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: