RibbonSearchMenuEventArgs.AddHeader(String) Method
Adds a header to the Search Menu.
Namespace: DevExpress.XtraBars.Ribbon
Assembly: DevExpress.XtraBars.v24.2.dll
Declaration
Parameters
Name | Type | Description |
---|---|---|
caption | String | The header caption. |
Remarks
The following code snippet uses AddHeader
and AddItem methods to add elements to the Search Menu:
void ribbonControl1_CustomizeSearchMenu(object sender, RibbonSearchMenuEventArgs e) {
// ...
e.AddHeader("Get More Help");
e.AddItem(biOnlineHelp);
}
See Also