PrintPreviewDialog::Menu Property

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets the MainMenu that is displayed in the form.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(false)]
property MainMenu^ Menu {
	MainMenu^ get();
	void set(MainMenu^ value);
}

Property Value

Type: System.Windows.Forms::MainMenu^

A MainMenu that represents the menu to display in the form.

This property is not relevant for this class.

You can use this property to switch between complete menu sets at run time. For example, you can define one MainMenu to be displayed when your multiple document interface (MDI) form has no active MDI child forms and another MainMenu to display when a child window is displayed. You can also use a different MainMenu when specific conditions that require displaying a different menu set exist in your application.

.NET Framework
Available since 1.1
Return to top
Show: