dbCreateCompTypeSetDefByAttr
dbCreateCompTypeSetDefByAttr(d_cvId t_name l_attr_dpl) =>d_compTypeSetDefId/nil
Description
Creates a compTypeSetDef in the given cellview based on the specified attributes list.
Arguments
Value Returned
Examples
Creates a compTypeSetDef in the cellLib cellview.
;Create compTypeSetDef
compAttr = list(nil)
compAttr->refOnArea = "centerAlignment"
compAttr->refOnComp = "anyAlignment"
compAttr->allowedTypes = list("compType1" "compType2")
compAttr->orients = list("R0")
compAttr->compFilters = list(list("cellLib" "nf*" "layout") list("cellLib" "ng*" "layout"))
cdef = dbCreateCompTypeSetDefByAttr(cv "compTypeSetDef" compAttr)
Related Topics
Placement Database Access Functions
Return to top