MenuItemStyleCollection.Contains(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.
Determines whether the specified MenuItemStyle object is in the collection.
public:
 bool Contains(System::Web::UI::WebControls::MenuItemStyle ^ style);public bool Contains(System.Web.UI.WebControls.MenuItemStyle style);member this.Contains : System.Web.UI.WebControls.MenuItemStyle -> boolPublic Function Contains (style As MenuItemStyle) As BooleanParameters
- style
- MenuItemStyle
The MenuItemStyle to find.
Returns
true if the specified MenuItemStyle is contained in the collection; otherwise, false.
Remarks
Use the Contains method to determine whether a MenuItemStyle object is contained in the collection. This method is commonly used to test for the existence of a MenuItemStyle object before performing a task, such as adding or removing a menu item style from the collection.