Interface IRibbonItems
Supports events which are raised before System.Windows.Forms.ToolStripItem item
will be added to collection and before System.Windows.Forms.ToolStripItem item
will be removed from collection. Also method for removing System.Windows.Forms.ToolStripItem item
at the specific index is represented.
Assembly: Syncfusion.Tools.Windows.dll
public interface IRibbonItems : ICollection, IEnumerable
Properties
Gets the item at the specified index.
Declaration
ToolStripItem this[int index] { get; }
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
Property Value
| Type |
| System.Windows.Forms.ToolStripItem |
Methods
Declaration
void add_BeforeAddItem(RibbonItemsEventHandler value)
Parameters
Declaration
void add_BeforeRemoveItem(RibbonItemsEventHandler value)
Parameters
Declaration
void remove_BeforeAddItem(RibbonItemsEventHandler value)
Parameters
Declaration
void remove_BeforeRemoveItem(RibbonItemsEventHandler value)
Parameters
Removes the System.Windows.Forms.ToolStripItem item at the specified index.
Declaration
Parameters
| Type |
Name |
Description |
| System.Int32 |
idx |
The zero-based index of the item to remove.
|
Events
Occurs before System.Windows.Forms.ToolStripItem item
will be added to collection.
Declaration
event RibbonItemsEventHandler BeforeAddItem
Event Type
Occurs before System.Windows.Forms.ToolStripItem item
will be removed from collection.
Declaration
event RibbonItemsEventHandler BeforeRemoveItem
Event Type