Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

dbSetInPlaceCoverObstructionAbstractFilePath

dbSetInPlaceCoverObstructionAbstractFilePath(
d_InstHeaderId
t_filePath
) 
=> t / nil

Description

Sets value of the InPlaceCoverObstruction AbstractFilePath attribute on the specified instance header.

Arguments

d_InstHeaderId

ID of an instance header.

t_filePath

A valid AbstractFilePath value.

Values Returned

t

The specified AbstractFilePath attribute value is set for the given instance header.

nil

The operation failed.

Examples

Sets the InPlaceCoverObstruction AbstractFilePath attribute value newFilePath 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
 ⠀
X