dbSetInPlaceCoverObstructionBloat
dbSetInPlaceCoverObstructionBloat(
d_InstHeaderId
t_layerName
n_value
)
=> t / nil
Description
Sets value of the InPlaceCoverObstruction Bloat attribute on the specified instance header on the given layer.
Arguments
Values Returned
|
The specified |
|
Examples
Sets the InPlaceCoverObstruction Bloat attribute value 10 for the instance header instHeaderId on the layer "Layer1".
inst = dbCreateInst(cv master "inst" list(3 4) "R0" 1)
instHeaderId = inst~>instHeader
dbCreateInPlaceCoverObstruction(instHeaderId list("closed" 1 4))
equal(dbGetInPlaceCoverObstructionBloat(instHeaderId "Layer1") 0))
dbSetInPlaceCoverObstructionBloat(instHeaderId "Layer1" 10)
equal(dbGetInPlaceCoverObstructionBloat(instHeaderId "Layer1") 10)
Return to top