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

txConcatFigSet

txConcatFigSet(
T_figSet1
T_figSet2
)
=> t / nil

Description

Appends the contents of FigSet2 to the end of FigSet1.

Arguments

T_figSet1

ID of the target FigSet.

T_figSet2

ID of the source FigSet.

Value Returned

t

The contents were appended successfully.

nil

Returned in case of failure.

Examples

Appends the contents of fs_dest to the end of fs_src.

fs_src = txCreateFigSet(cv "fs_src")
> tx@0x1fc106d0
fs_dest = txCreateFigSet(cv "fs_dest")
> tx@0x1fc10e20
txAppendObjectToFigSet(fs_src txCreateFigSet(cv "fs0"))
> t
txAppendObjectToFigSet(fs_src txCreateFigSet(cv "fs1"))
> t
txConcatFigSet(fs_dest fs_src)
> t
txGetFigSetData(fs_dest 0)~>name
> "fs0"
txGetFigSetData(fs_dest 1)~>name
> "fs1"

Related Topics

FigSet Functions


Return to top
 ⠀
X