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

dbGetInPlaceCoverObstructionNeedsRemodeling

dbGetInPlaceCoverObstructionNeedsRemodeling(
d_InstHeaderId
) 
=> 
t / nil

Description

Returns value of the InPlaceCoverObstruction NeedsRemodeling attribute from the specified instance header.

Arguments

d_InstHeaderId

ID of an instance header.

Values Returned

t

The NeedsRemodeling attribute value for the specified instance is set to t.

nil

The NeedsRemodeling attribute value for the specified instance is set to nil. This is also the default value of NeedsRemodeling attribute when the InPlaceCoverObstruction is created.

Examples

Returns t as the InPlaceCoverObstruction NeedsRemodeling 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(dbGetInPlaceCoverObstructionNeedsRemodeling(instHeaderId) nil)
     dbSetInPlaceCoverObstructionNeedsRemodeling(instHeaderId t)

equal(dbGetInPlaceCoverObstructionNeedsRemodeling(instHeaderId) t)


Return to top
 ⠀
X