GetAUTQtVersion
string GetAUTQtVersion()Description
Determines the Qt version used by the AUT by analyzing metadata and Qt-related components.
If no Qt environment is detected or the version cannot be read, an empty string is returned.
Return
string - The detected Qt version, or an empty string if no Qt version can be identified.
Example
void main()
{
string qtVersion = GetAUTQtVersion();
Print("Qt Version: " + qtVersion);
}