Share via


RibbonOfficeMenu.Items Property (2007 System)

Gets the Ribbon controls that you added to the Microsoft Office Menu.

Namespace:  Microsoft.Office.Tools.Ribbon
Assembly:  Microsoft.Office.Tools.Common.v9.0 (in Microsoft.Office.Tools.Common.v9.0.dll)

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property Items As RibbonComponentCollection(Of RibbonControl)
'Usage
Dim instance As RibbonOfficeMenu 
Dim value As RibbonComponentCollection(Of RibbonControl)

value = instance.Items
[BrowsableAttribute(false)]
public RibbonComponentCollection<RibbonControl> Items { get; }
[BrowsableAttribute(false)]
public:
property RibbonComponentCollection<RibbonControl^>^ Items {
    RibbonComponentCollection<RibbonControl^>^ get ();
}
public function get Items () : RibbonComponentCollection<RibbonControl>

Property Value

Type: Microsoft.Office.Tools.Ribbon.RibbonComponentCollection<RibbonControl>
The collection of Ribbon controls that you added to the Microsoft Office Menu at design time or run time.

Exceptions

Exception Condition
InvalidOperationException

You try to add, remove, or replace a RibbonControl after the Ribbon is loaded.

Remarks

You can add controls at run time, but only before the Ribbon is loaded. Create an instance of the control, and then add the new control to the Items collection. For more information, see Ribbon Object Model Overview.

When you add controls to the Microsoft Office Menu by using the Ribbon Designer, Visual Studio Tools for Office automatically adds the controls to the Items property.

.NET Framework Security

See Also

Reference

RibbonOfficeMenu Class

RibbonOfficeMenu Members

Microsoft.Office.Tools.Ribbon Namespace

Other Resources

How to: Customize the Microsoft Office Menu

Ribbon Object Model Overview