txClearFigSet
txClearFigSet( T_figSet ) => t / nil
Description
Clears the contents of the specified FigSet.
Arguments
Value Returned
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
Return to top