dbGetInPlaceCoverObstructionAbstractFilePath
dbGetInPlaceCoverObstructionAbstractFilePath(d_InstHeaderId) =>t_filePath/ nil
Description
Returns the value of the InPlaceCoverObstruction AbstractFilePath attribute for the specified instance header.
Arguments
Values Returned
|
Value of the InPlaceCoverObstruction AbstractFilePath attribute for the specified instance header. |
|
Examples
Returns newFilePath as the InPlaceCoverObstruction AbstractFilePath 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(dbGetInPlaceCoverObstructionAbstractFilePath(instHeaderId) "")
dbSetInPlaceCoverObstructionAbstractFilePath(instHeaderId "newFilePath")
equal(dbGetInPlaceCoverObstructionAbstractFilePath(instHeaderId) "newFilePath")
Return to top