Edit

Share via


MenuItem.MergeType Property

Definition

Gets or sets a value indicating the behavior of this menu item when its menu is merged with another.

public System.Windows.Forms.MenuMerge MergeType { get; set; }

Property Value

A MenuMerge value that represents the menu item's merge type.

Exceptions

The assigned value is not one of the MenuMerge values.

Examples

The following code example creates a MenuItem with the MergeType and MergeOrder specified so that the menu item is added to the merged menu at first position.

public void InitMyFileMenu()
{
   // Set the MergeType to Add so that the menu item is added to the merged menu.
   menuItem1.MergeType = MenuMerge.Add;
   // Set the MergeOrder to 1 so that this menu item is placed lower in the merged menu order.
   menuItem1.MergeOrder = 1;
}

Remarks

The merge type of a menu item indicates how the menu item behaves when it has the same merge order as another menu item being merged. You can use merged menus to create a consolidated menu based on two or more existing menus.

Applies to

See also