Hi Alan,
You can use TestStand API methods to get File Globals in your Sequence File:
1. First, get the Sequence File Object containing the File Globals by using TestStand API method "
Engine.GetSequenceFileEx";
2. Then, get the PropertyObject that contains the default values of the global variables for the Sequence File by calling "
SequenceFile.FileGlobalsDefaultValues" property;
3. Finally, run "
Engine.ReleaseSequenceFileEx" method to release the reference of object.
Regards
MY