gpeSetRouter
gpeSetRouter(
u_sandbox
t_router
[ ?verbose { t | nil } ]
)
=> t / nil
Description
Specifies the router to be used to route the Modgen.
Arguments
|
u_sandbox
|
Specifies the Modgen sandbox object.
|
|
t_router
|
Specifies the name of the router to be set.
Valid values are:
-
pinToTrunk: Calls the PinToTrunk router, with the topology information specified in the Modgen to do the routing. -
none: The Modgen is not routed by any router. -
manual: The current routing in the Modgen is not changed. The Modgen can be routed manually by drawing the physical geometry inside it.
|
|
?verbose { t | nil }
|
|
|
Controls the display of warning messages.
|
Value Returned
|
t
|
Indicates that the router parameter was set.
|
|
nil
|
The command was unsuccessful.
|
Example
In the following example, the pin to trunk router is set to route the specified Modgen sandbox object.
sandbox = gpeEditSandbox(leGetEditFigGroup())
gpeSetRouter(sandbox "pinToTrunk")
=> t
Return to top