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

dbRemoveFigFromFigGroup

dbRemoveFigFromFigGroup( 
d_figGroupId
d_figId
)
=> t / nil

Description

Removes a figure from a figGroup object.

Arguments

d_figGroup

The figGroup ID.

d_fig

The ID of the figure to be removed.

Value Returned

t

The figure was removed from the figGroup successfully.

nil

An error occurred during execution.

Examples

Removes the figure figOfRect from the figGroup figGroup1.

dbRemoveFigFromFigGroup(figGroup1 figOfRect)

Deletes a figGroup and all its members. First retrieves all the members and removes them from the figGroup and then deletes the group.

for(fig figGroup~>members
dbRemoveFigFromFigGroup(fig figGroup)
)
dbDeleteObject(figGroup)

Related Topics

FigGroup Creation and Modification Functions


Return to top
 ⠀
X