GetAUTProductVersion
string GetAUTProductVersion()Description
Returns the product version defined in the AUT's file metadata.
This value may differ from the file version if the application uses a separate public versioning scheme.
If reading the version fails, an empty string is returned.
Return
string - Product version of the AUT, or an empty string if unavailable.
Example
void main()
{
string productVersion = GetAUTProductVersion();
Print(productVersion);
}