.
|
Separates components of menu names. If it is the first character, it is an absolute path to a menu or item within the menu bar.
|
*
|
Matches 0 or more characters.
|
?
|
Matches any single character.
|
[...]
|
Matches any one of the enclosed characters. A range of characters can be specified by separating the start and end characters with a hyphen, such as 0-9, a-z, or A-z (for all letters, uppercase and lowercase).
|
_
|
Matches a space or an underscore.
|
\
|
Treat the following special character as an ordinary character. For example, \. matches a period.
|
find(menuPath )
|
|
Parameters
|
StringmenuPath
The menu path of a menu item.
|
Returns
|
MenuItem. The MenuItem which is associated with the menuPath
|