spdGetUserFlowProc
spdGetUserFlowProc(
)
=> r_infoObj / nil
Description
Returns an object containing the user flow callbacks that were registered using the function.
Arguments
Value Returned
|
The object containing user flow callbacks. This information can be queried using the See example below for the details of the information returned. |
|
Example
Register the user flow callbacks.
spdRegUserFlowProc(?postGen "MyPostGenProc" ?preGen "MyPreGenProc")
=> t
Query the information of current registration.
spdGetUserFlowProc()~>??
=> (postGen "MyPostGenProc" preGen "MyPreGenProc" ?postGenLayout "MyPostGenLayProc")
-
The user callback to post-process real devices in SPD Preview after placement is
MyPostGenProc. -
The user callback to pre-process real devices in SPD Preview before placement is
MyPreGenProc. -
The user callback to postprocess the SPD result after the design placed in the target layout is
MyPostGenLayoutProc.
Related Topics
Return to top