asiGetSimCommandLineOrder
asiGetSimCommandLineOrder(o_session) =>s_optionList/nil
Description
Returns the order of options used in the simulator run command. By default, it returns the options in the following order:
simulatorName inputFile simOptions scriptOptions
To get a different order of the options in the list returned, overload the function to specify the desired order. For example:
defmethod( asiGetSimCommandLineOrder(o_session)
'(simulatorName simOptions scriptOptions inputFile)
)
Argument
Value Returned
Examples
Displays the options used to run the spectre simulator.
asiGetSimCommandLineOrder( spectre_seesion )
Return to top