ResumeSimulation
Call this function to resume the simulation after being paused.
Once paused, the simulation can be resumed manually or by calling this function from a macro.
🔁 Function
void ResumeSimulation();
⚙️ Parameters
None
↩️ Return Value
None
📝 Example
In simulation script, create a function to call ResumeFunction:
function Resume() {
ResumeFunction();
}
Then from a macro or a menu, you can call this function:
Project.CallSimulationScriptFunction("Resume", Caller, 0);