dbGetInPlaceCoverObstructionPinCutOut
dbGetInPlaceCoverObstructionPinCutOut(
d_InstHeaderId
t_layerName
)
=> t / nil
Description
Returns value of the InPlaceCoverObstruction PinCutOut attribute for the specified instance header on the given layer.
Arguments
Values Returned
Examples
Returns t as the value to confirm that the PinCutOut attribute value for the instance header instHeaderId on the layer Layer1 is set to t.
inst = dbCreateInst(cv master "inst" list(3 4) "R0" 1)
instHeaderId = inst~>instHeader
dbCreateInPlaceCoverObstruction(instHeaderId list("closed" 1 4))
equal(dbGetInPlaceCoverObstructionPinCutOut(instHeaderId "Layer1") nil)
dbSetInPlaceCoverObstructionPinCutOut(instHeaderId "Layer1" t)
equal(dbGetInPlaceCoverObstructionPinCutOut(instHeaderId "Layer1") t)
Return to top