MenuItemStyleCollection.CopyTo(MenuItemStyle[], Int32) Method

Definition

Copies all the items from the MenuItemStyleCollection object to a compatible one-dimensional array of MenuItemStyle objects, starting at the specified index in the target array.

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

Parameters

styleArray
MenuItemStyle[]

A zero-based array of MenuItemStyle objects that received the copied items from the MenuItemStyleCollection.

index
Int32

The position in the target array at which to start receiving the copied content.

Remarks

Use the CopyTo method to copy the contents of the MenuItemStyleCollection object into the specified zero-based array of MenuItemStyle objects. Items are copied starting at the specified index of the target array. You can then use the array to access the items in the collection.

Applies to

See also