RibbonBase.OfficeMenu Property
Gets a RibbonOfficeMenu that represents the Microsoft Office Menu customization.
Namespace: Microsoft.Office.Tools.Ribbon
Assembly: Microsoft.Office.Tools.Common.v4.0.Utilities (in Microsoft.Office.Tools.Common.v4.0.Utilities.dll)
Syntax
'Declaration
Public ReadOnly Property OfficeMenu As RibbonOfficeMenu
public RibbonOfficeMenu OfficeMenu { get; }
Property Value
Type: Microsoft.Office.Tools.Ribbon.RibbonOfficeMenu
A RibbonOfficeMenu that represents the Microsoft Office Menu customization.
Remarks
The Microsoft Office Menu is the menu that opens when you click the File tab (for Microsoft Office 2010) or the Microsoft Office Button (for the 2007 Microsoft Office system). You can add controls to the Microsoft Office Menu only by using the Ribbon Designer. For more information, see How to: Add Controls to the Backstage View.
You can access a read-only collection of Ribbon controls in the Microsoft Office Menu customization at run time by using the Items property of the RibbonOfficeMenu instance that is exposed by the OfficeMenu property.
Examples
The following example gets the number of custom controls in the Microsoft Office Menu customization.
Note
To run this code example, you must first add a Ribbon (Visual Designer) to an Office project. You can then run this code in the generated Ribbon class.
Dim numControlsInOfficeMenu As Integer = Me.OfficeMenu.Items.Count
int numControlsInOfficeMenu = this.OfficeMenu.Items.Count;
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.