MenuItem.Child

From Xojo Documentation

Method

MenuItem.Child(name As String) As MenuItem

Supported for all project types and targets.

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

Sample Code

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

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