lmDeleteTermProp
lmDeleteTermProp(
d_cellList
t_viewName
( g_terminalList … t_propertyName g_terminalList … t_propertyName )
)
Description
Deletes specified properties from the terminals of specified views.
Arguments
|
d_cellList
|
Specifies the cells of the library, in the form
{ cellName | t | ( cellName … ) }
If d_cellList is t, all cells in the current library are implied.
|
|
t_viewName
|
The view type. Valid Values: symbol, schematic
Default: symbol
|
|
g_terminalList
|
The terminals from which to delete properties, in the form
{ terminalName | t | input | output | io | switch | ( terminalName … ) }
|
|
|
terminalName
|
Name of the terminal: must be enclosed in quotation marks.
|
|
|
t
|
Implies all terminals of the cell.
|
|
|
input
|
Implies all input terminals.
|
|
|
output
|
Implies all output terminals.
|
|
|
io
|
Implies all input/output terminals.
|
|
|
switch
|
Implies all switch terminals.
|
Example
lmDeleteTermProp( SN74181 symbol
(input Iih)
(output Iol Ioh)
)
Deletes the property Iih from all input terminals and the properties Iol and Ioh from all output terminals for the symbol view of cell SN74181.
Return to top