Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

spdGetUserFlowProc

spdGetUserFlowProc(
)
=> r_infoObj / nil

Description

Returns an object containing the user flow callbacks that were registered using the spdRegUserFlowProc function.

Arguments

None

Value Returned

r_infoObj

The object containing user flow callbacks. This information can be queried using the obj~>? or obj~>?? command.

See example below for the details of the information returned.

nil

The user flow callback is not registered.

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")

Here:

Related Topics

spdRegUserFlowProc


Return to top
 ⠀
X