gpeGetStrapEntries
gpeGetStrapEntries(u_sandboxObject[ ?netNamesl_netNames][ ?deviceNamesl_deviceNames][ ?instTermNamesl_instTermNames] [?verbose{t|nil} ] ) =>l_straps/ nil
Description
Filters straps in the Modgen sandbox based on the specified identifiers. It is recommended to use only one of the optional arguments. If no arguments are provided, all straps in the Modgen are displayed. If multiple arguments are provided, the intersection of the sets is displayed.
Arguments
Value Returned
Example
Returns all straps with nets vdda! or vssa! in the specified Modgen sandbox object that are connected to instTerm G or D on devices M1 or M2:
sandbox = gpeEditSandbox(leGetEditFigGroup())
straps = gpeGetStrapEntries(sandbox ?netNames list("vdda!" "vssa!") ?deviceNames list("M1" "M2") ?instTermNames list("G" "D"))
Return to top