I am writing a matlab script to export a .zmx as CAD. I'd like it to work with sequential and non-sequential files. Therfore the script should check what mode the file is in. I could only find:
bool ZOSAPI.Tools.General.IExportCAD.SequentialSettingsEnabled
which:
Gets a value indicating whether or not the sequential-only settings are used.
true if the sequentials settings are available; otherwise, false.
Is there no higher level function to get the file's mode?
I feel like that is a somewhat convoluted way to get the mode.