axlRemoveSimulationResults
axlRemoveSimulationResults(
x_historySDB
)
=> t / nil
Description
Removes the simulation results data for the given history. The function removes only the results saved by the simulator. The results database and the history item is not removed.
To remove the simulation results data for a history from the GUI, right-click the history name in the Data View assistant and choose Delete Simulation Data from the context-sensitive menu.
Arguments
|
Handle to the history for which the simulation data is to be deleted. This cannot be a handle to the checkpoint of a history. |
||
Value Returned
|
Simulation results data for the given history is successfully deleted. |
||
Examples
Deletes the simulation data for the history Interactive.9.
session = (axlGetWindowSession)
=> "session0"
x_mainSDB = axlGetMainSetupDB(session)
=> 1001
x_historySDB=axlGetHistoryEntry(x_mainSDB "Interactive.9")
=> 1115
axlRemoveSimulationResults(x_historySDB)
=> t
Related Topics
Return to top