dbGetInPlaceCoverObstructionLayers
dbGetInPlaceCoverObstructionLayers(d_InstHeaderId) =>l_layerNames/ nil
Description
Returns a list of physical layer names in the technology database, with mask value lying between the minMask and maxMask values.
Arguments
|
ID of the instance header on which InPlaceCoverObstruction object is present. |
Values Returned
Examples
Returns a list of physical layer names in the technology database for the instance header instHeaderId, with mask value lying between the minimum mask value of 1, and maximum mask value of 4, both values inclusive.
inst = dbCreateInst(cv master "inst" list(3 4) "R0" 1)
instHeaderId = inst~>instHeader
dbCreateInPlaceCoverObstruction(instHeaderId list("closed" 1 4))
dbGetInPlaceCoverObstructionLayers(instHeaderId)
Return to top