leCARCommand
leCARCommand(t_replayFileName[g_enterPointFlag] [g_debugFlag] ) =>l_recordedActions/ nil
Description
(Layout EXL and higher tiers only) Replays the set of actions recorded in a .car file.
Arguments
Value Returned
|
Returns the series of actions that are performed while replaying the specified replay file. |
|
Example
The following example returns the series of actions that are performed while replaying the file createRectangle. The actions are performed at the points saved in the replay file.
leCARCommand("createRectangle")
t
lePointX = 1.472000
1.472
lePointY = 4.842500
4.8425
;
; ========================================================================= ;
; FileName: "./.cadence/dfII/captureReplay/createRectangle.car"
; Date: Feb 9 11:20:00 2023
; Author: savt
; Command Name: createRectangle
; Command Description: Creates a rectangle
; Group Name: Macros1
; ========================================================================= ;
; Recorded part:
t
; Recorded part:
t
The following example returns the series of actions performed while replaying the file createRectangle. The actions are performed at the user-specified point.
leCARCommand("createRectangle" t)
(-5.034 4.071)
lePointX = -5.034000
-5.034
lePointY = 4.071000
4.071
t
;
; ========================================================================= ;
; FileName: "./.cadence/dfII/captureReplay/createRectangle.car"
; Date: Feb 9 11:20:00 2023
; Author: savt
; Command Name: createRectangle
; Command Description: Creates a rectangle
; Group Name: Macros1
; ========================================================================= ;
; Recorded part:
Related Topics
Return to top