Share via


RibbonGroup.Items Property (2007 System)

Gets the controls in the group.

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

Syntax

'Declaration
Public ReadOnly Property Items As RibbonComponentCollection(Of RibbonControl)
'Usage
Dim instance As RibbonGroup 
Dim value As RibbonComponentCollection(Of RibbonControl)

value = instance.Items
public RibbonComponentCollection<RibbonControl> Items { get; }
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 controls in the group.

Exceptions

Exception Condition
InvalidOperationException

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

Remarks

You can add a Ribbon control to a group 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 a group by using the Ribbon Designer, Visual Studio Tools for Office automatically adds the controls to the Items property of the group.

.NET Framework Security

See Also

Reference

RibbonGroup Class

RibbonGroup Members

Microsoft.Office.Tools.Ribbon Namespace

Other Resources

Ribbon Object Model Overview