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

dbSetInPlaceCoverObstructionAbstractViewName

dbSetInPlaceCoverObstructionAbstractViewName(
d_InstHeaderId
t_viewName
) 
=> t / nil

Description

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

Arguments

d_InstHeaderId

ID of an instance header.

t_viewName

A valid AbstractViewName value.

Values Returned

t

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

nil

The operation failed.

Examples

Sets the InPlaceCoverObstruction AbstractViewName attribute value newViewName 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(dbGetInPlaceCoverObstructionAbstractViewName(instHeaderId) "")
         dbSetInPlaceCoverObstructionAbstractViewName(instHeaderId "newViewName")
         equal(dbGetInPlaceCoverObstructionAbstractViewName(instHeaderId) "newViewName")

Return to top
 ⠀
X