MenuItemStyleCollection.Remove(MenuItemStyle) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.