dbInPlaceCoverObstructionExists
dbInPlaceCoverObstructionExists(
d_InstHeaderId
)
=> t / nil
Description
Checks whether an InPlaceCoverObstruction object is present on the specified instance header.
Arguments
Values Returned
|
Returned in case the |
|
|
Returned in case the |
Examples
Returns t as the InPlaceCoverObstruction object is present on the instance header instHeaderId.
inst = dbCreateInst(cv master "inst" list(3 4) "R0" 1)
instHeaderId = inst~>instHeader
dbCreateInPlaceCoverObstruction(instHeaderId list("closed" 1 4))
equal(dbInPlaceCoverObstructionExists(instHeaderId) t)
Return to top