DesktopMenuItem.Child

From Xojo Documentation

Method

DesktopMenuItem.Child(name As String) As DesktopMenuItem

New in 2021r3

Supported for all project types and targets.

Looks up menu items by Name and returns a DesktopMenuItem. Returns Nil if a child is not found.

Sample Code

The following example gets the text of the Edit ↠ Cut menuitem.

Var c As DesktopMenuItem
c = EditMenu.Child("EditCut")
MessageBox(c.Value)