Form.MergedMenu Property

Definition

Gets the merged menu for the form.

public:
 property System::Windows::Forms::MainMenu ^ MergedMenu { System::Windows::Forms::MainMenu ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.MainMenu MergedMenu { get; }
[<System.ComponentModel.Browsable(false)>]
member this.MergedMenu : System.Windows.Forms.MainMenu
Public ReadOnly Property MergedMenu As MainMenu

Property Value

A MainMenu that represents the merged menu of the form.

Attributes

Remarks

This property is primarily used when the form is a multiple-document interface (MDI) child form that merges its menu with its parent form's menu. You can use this property to obtain the current menu structure in an MDI application to make changes or additions to the menu structure. To obtain the nonmerged MainMenu assigned to a form, use the Menu property.

Applies to

See also