dbRemoveRowRailDef
dbRemoveRowRailDef(
d_rowId
d_railDefId
)
=> t / nil
Description
Removes a reference to the specified railDef in the specified row. The rail geometry is also deleted. A warning message is displayed if the objects are not of the correct type.
Arguments
Value Returned
Examples
Removes a reference to the specified railDef in the specified row.
;; create row
row = dbCreateRow(cellViewid
siteDef
name
origin
numSites)
;; create railDef
> def = dbCreateRailDef(cellViewId
"myRailDef"
"netName"
list("layer" "purpose")
"bottomAlignment"
"bottomAlignment"
railWidth
offsetFromRowReference)
;; Add reference to RailDef in row
dbAddRowRailDef(row def)
;; removes reference and rail geometry
dbRemoveRowRailDef(row def)
Related Topics
Placement Database Access Functions
Return to top