qml_evaluatefile
Evaluates a js file.
📝Syntax
r = qml_evaluatefile(filename)
📥Input Arguments
Parameter Description
filename a string: a js filename.
📤Output Arguments
Parameter Description
r a double, logical, int or string.
📄Description

Evaluates a js file.

If returned value cannot be converted to a basic type, it will converted to string.

💡Examples
test_file = [tempdir() , '/example_qml_evaluatefile.js'];
f = fopen(test_file, 'wt');
fwrite(f, 'a = 2 + 4');
fclose(f);
qml_evaluatefile(test_file)
🔗See Also
qml_evaluatestring
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub