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

dbSetInPlaceCoverObstructionAbstractFileName

dbSetInPlaceCoverObstructionAbstractFileName(
d_InstHeaderId
t_fileName
) 
=> t / nil

Description

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

Arguments

d_InstHeaderId

ID of an instance header.

t_fileName

A valid AbstractFileName value.

Values Returned

t

The specified AbstractFileName attribute value is set for the specified instance header.

nil

The operation failed.

Examples

Sets the InPlaceCoverObstruction AbstractFileName attribute value newFileName 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
 ⠀
X