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

txClearFigSet

txClearFigSet(
T_figSet
)
=> t / nil

Description

Clears the contents of the specified FigSet.

Arguments

T_figSet

ID of the FigSet.

Value Returned

t

The contents were cleared.

nil

Returned in case of failure.

Examples

Clears the contents of the FigSet fs1.

fs0 = txCreateFigSet(cv "fs0")
> tx@0x19d35cf0
fs1 = txCreateFigSet(cv "fs1")
> tx@0x19a46350
txAppendObjectToFigSet(fs1 fs0)
> t
fs1~>length 
> 1
txClearFigSet(fs1)
> t
fs1~>length 
> 0

Related Topics

FigSet Functions


Return to top
 ⠀
X