MenuItem.MenuAt

From Xojo Documentation

Method

MenuItem.MenuAt(Index as Integer) As MenuItem

New in 2019r2

Supported for all project types and targets.

Item returns as a MenuItem the item indicated by its index (zero-based).

Notes

If the passed index is out of range, an OutOfBoundsException is raised.

Example

The following example gets the MenuItem corresponding to the Cut item on the Edit menu by position:

Var c As MenuItem
c = EditMenu.MenuAt(2)
MessageBox(c.Value)