Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Runs a MenuFunction object from code.
Syntax
public void run([xArgs _args])
Run On
Called
Parameters
- _args
Type: xArgs Class
The arguments that are used to run the MenuFunction object; optional.
Remarks
This function is used to run a MenuFunction object from code.
Examples
This example creates and runs a MenuFunction object.
// Create a MenuFunction object.
MenuFunction mf;
mf = new MenuFunction(FormStr(Address), MenuItemType::Display);
// Run it.
mf.run();