schHiPinListToView
schHiPinListToView( [ ?libNamet_libName] [ ?cellNamet_cellName] [ ?viewNamet_viewName] [ ?inPinListt_inPinList] [ ?outPinListt_outPinList] [ ?ioPinListt_ioPinList] [ ?swPinListt_swPinList] [ ?dataTypet_dataType] [ ?jpPinListt_jpPinList] [ ?trPinListt_trPinList] [ ?unPinListt_unPinList] ) => t
Description
Generates a cellview from a pin list. Usable when editing schematics or symbols.
If you do not specify t_libName, t_cellName, or t_viewName, a form appears for you to specify them. The form also appears if you do not specify all four of the pin list arguments. Use an empty string ( "" ) to represent an empty pin list.
If you do not specify any argument or specify an argument as nil, the form appears so that you can specify the field values.
If the schViewToPinListReg list or the schPinListToViewReg list does not contain the desired view type and conversion function, you must modify the lists. The lists are defined in your schConfig.il file (your_install_dir/samples/local/schConfig.il). Refer to the following section in your schConfig.il file for more information about modifying the schViewToPinListReg and schPinListToViewReg lists.
Arguments
Value Returned
Examples
Displays the options form for creating a symbol cellview with input terminals a and b and output terminal x.
schHiPinListToView( "mylib" "and2" "symbol" "a" "b" "x" "" "Schematic Editor-Symbol" )
Return to top