axlSetAllSweepsEnabled
axlSetAllSweepsEnabled(x_hsdbg_enableStatus) => t / nil
Description
Sets the selection status of the Point Sweeps check box in the Run Summary assistant pane.
Arguments
|
Selects or deselects the Point Sweeps check box in the Run Summary assistant pane. |
||
Value Returned
Examples
Selects the Point Sweeps check box.
db=axlGetMainSetupDB("session0")
1001
axlSetAllSweepsEnabled(db 1)
=> t
Deselects the Point Sweeps check box.
db=axlGetMainSetupDB("session0")
1001
axlSetAllSweepsEnabled(db 0)
=> t
Return to top