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

txRemoveFigSetData

txRemoveFigSetData(
T_figSet
n_entry
)
=> t / nil

Description

Removes the nth object from the specified FigSet.

Arguments

T_figSet

ID of the FigSet.

n_entry

The index of the object to remove.

Value Returned

t

The object was removed successfully.

nil

Returned in case of failure.

Examples

Removes the object at the first position from the FigSet fs12.

fs12 = txCreateFigSet(cv "fs12")
> tx@0x19d35cf0
txAppendObjectToFigSet(fs12 txCreateFigSet(cv "fs0"))
> t
txAppendObjectToFigSet(fs12 txCreateFigSet(cv "fs1"))
> t
txRemoveFigSetData(fs12 0)
> t
txGetFigSetData(fs12 0)~>name
> "fs1"

Related Topics

FigSet Functions


Return to top
 ⠀
X