Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

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

d_rowId

Database ID of a row.

d_railDefId

Database ID of a railDef area.

Value Returned

t

The reference was removed successfully.

nil

An error occurred during execution.

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
 ⠀
X