Skip to main content

SchedulerPopupMenu.GetMenuItemById(DXPopupMenu, SchedulerMenuItemId, Boolean) Method

Gets the menu item within the specified popup (context) menu by its ID value. Also optionally recursively searches for this menu item in all submenus, if it isn’t found in the main popup menu.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

public static SchedulerMenuItem GetMenuItemById(
    DXPopupMenu menu,
    SchedulerMenuItemId id,
    bool recursive
)

Parameters

Name Type Description
menu DXPopupMenu

A DXPopupMenu object which represents the popup menu to search in.

id SchedulerMenuItemId

A SchedulerMenuItemId enumeration value which specifies the ID value of the menu item to search.

recursive Boolean

true to recursively search for the menu item in all submenus; otherwise, false.

Returns

Type Description
SchedulerMenuItem

A SchedulerMenuItem object whose ID is equal to the specified ID value. If a menu item with the specified ID isn’t found, then the null (Nothing in Visual Basic) value will be returned.

Remarks

Use the GetMenuItemById method to find a menu item with the specified ID value in the DXSubMenuItem.Items collection of the specified popup menu. Note that this method finds only the first occurrence of an item with the specified ID.

Also if this menu item isn’t contained in the main popup menu’s Items collection, you can optionally specify if this menu item is searched for in all submenus.

See Also