Use this property to identify the screen that should be active in the session in order for your macro to be listed. You will need to use this property if your FVTerm application is not running with a Inventu Viewer+ Screen Recognition Definitions XML file defined. If your FVTerm application has screen recognition active with a definitions file, use the runFromScreenID property instead of runFromScreen.
Note that if you want the user to be able to list and run your macro from any screen, omit both the runFromScreen and runFromScreenID overrides.
The macro will be listed when a screen is displayed with "USER" at row 2, column 31 and "SIMHOST" at row 5, column 25:
public override List<Recog> runFromScreen
{
get
{
return new List<Recog>()
{
new Recog(2, 31, "USER"),
new Recog(5, 25, "SIMHOST")
};
}
}