dbGetInPlaceCoverObstructionAbstractFileName
dbGetInPlaceCoverObstructionAbstractFileName(d_InstHeaderId) =>t_fileName/ nil
Description
Returns value of the InPlaceCoverObstruction AbstractFileName attribute for the specified instance header.
Arguments
Values Returned
|
Valid value of the InPlaceCoverObstruction AbstractFileName attribute. |
|
Examples
Returns newFileName as the InPlaceCoverObstruction AbstractFileName attribute value for the instance header instHeaderId.
inst = dbCreateInst(cv master "inst" list(3 4) "R0" 1)
instHeaderId = inst~>instHeader
dbCreateInPlaceCoverObstruction(instHeaderId list("closed" 1 4))
equal(dbGetInPlaceCoverObstructionAbstractFileName(instHeaderId) "")
dbSetInPlaceCoverObstructionAbstractFileName(instHeaderId "newFileName")
equal(dbGetInPlaceCoverObstructionAbstractFileName(instHeaderId) "newFileName")
Return to top