Use this property to identify the screen that should be active in the session in order for your macro to be listed when your FVTerm application has screen recognition active with a definitions file.
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.
This macro will be listed when a screen recognized as "Welcome" is active:
public override string runFromScreenID
{
get
{
return "Welcome";
}
}