axlGetHistoryCheckpoint
axlGetHistoryCheckpoint(x_history) =>x_checkpoint/ nil
Description
Returns the handle to the checkpoint of a history entry.
Arguments
Value Returned
|
The handle to the checkpoint of a history entry is returned. |
||
Examples
Checks for the existence of a history named data_design_verification and loads the history.
data_sdb = axlGetMainSetupDB(axlGetWindowSession())
axlLoadHistory( data_sdb )
=>1203
Finds the run mode of the given history name.
(defun CCRaxlGetRunModeFromHistoryName (sdbh histName)
(let (checkPoint)
checkPoint = (axlGetHistoryCheckpoint (axlGetHistoryEntry sdbh histName))
(axlGetCurrentRunMode checkPoint)
)
)
histName = "MonteCarlo.0"
sess = (axlGetWindowSession)
sdbh = (axlGetMainSetupDB sess)
runMode = (CCRaxlGetRunModeFromHistoryName sdbh histName) (printf "Run mode for history %s = \"%s\"\n" histName runMode)
Related Topics
Return to top