NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Form.MergedMenu

Gets the merged menu for the form.

[Visual Basic]
Public ReadOnly Property MergedMenu As MainMenu
[C#]
public MainMenu MergedMenu {get;}
[C++]
public: __property MainMenu* get_MergedMenu();
[JScript]
public function get MergedMenu() : MainMenu;

Property Value

A MainMenu that represents the merged menu of the form.

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.

See Also

Form Class | Form Members | System.WinForms Namespace | MainMenu | MenuItem