Menu.Items Property

Gets a MenuItemCollection object that contains all menu items in the Menu control.

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

public:
property MenuItemCollection^ Items {
	MenuItemCollection^ get ();
}
/** @property */
public MenuItemCollection get_Items ()

public function get Items () : MenuItemCollection

Not applicable.

Property Value

A MenuItemCollection that contains all menu items in the Menu control.

Use the Items property (collection) to get a MenuItemCollection object that contains all the menu items in a Menu control. This collection is commonly used to quickly iterate through all the menu items, or to access a specific menu item.

The Items collection can also be used to programmatically manage the menu items. You can add, insert, remove, and retrieve MenuItem collection objects. Any updates to the collection will automatically be reflected in the Menu control after the next round trip to the server.

The following code example demonstrates how to use the Items collection to traverse the menu items in the Menu control.

No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: