MenuItemStyleCollection.Remove(MenuItemStyle) Method

Definition

Removes the specified MenuItemStyle object from the collection.

public:
 void Remove(System::Web::UI::WebControls::MenuItemStyle ^ style);
public void Remove (System.Web.UI.WebControls.MenuItemStyle style);
member this.Remove : System.Web.UI.WebControls.MenuItemStyle -> unit
Public Sub Remove (style As MenuItemStyle)

Parameters

style
MenuItemStyle

The MenuItemStyle to remove.

Remarks

Use the Remove method to remove the specified MenuItemStyle object from the collection. All items that follow that menu item style are then moved up to fill the vacant position. The indexes of the moved items are also updated.

As an alternative, you can remove a MenuItemStyle object at a specific index by using the RemoveAt method.

Applies to

See also