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

dbRemoveRowCompTypeSetDef

dbRemoveRowCompTypeSetDef( 
d_rowId 
d_compTypeSetDefId 
)
=> t / nil

Description

Removes a reference to the specified compTypeSetDef in the specified row. A warning message is displayed if the objects are not of the correct type.

Arguments

d_rowId

Database ID of a row.

d_compTypeSetDefId

Database ID of a compTypeSetDef.

Value Returned

t

The reference was removed successfully.

nil

An error occurred during execution.

Examples

Removes a reference to the specified compTypeSetDef in the specified row.

;; create row
row = dbCreateRow(cellViewid
siteDef
name
origin
numSites)
;; create compTypeSetDef
def = dbCreateCompTypeSetDef(cellViewId
"myCompTypeSetDef"
"bottomAlignment"
"bottomAlignment"
list("R0" "MX")
list("Comptype1" "CompType2")
offsetFromRowReference
componnentPitch)
;; Add reference to compTypeSetDef in row
dbAddRowCompTypeSetDef(row def)
;; removes reference
dbRemoveRowCompTypeSetDef(row def)

Related Topics

Placement Database Access Functions


Return to top
 ⠀
X