txRemoveObjectFromFigSet
txRemoveObjectFromFigSet(
T_figSet
g_object
)
=> t / nil
Description
Removes the specified object from the given FigSet, if the object is a member of this FigSet. This object can be a figure or a FigSet.
Arguments
Value Returned
Examples
Removes the object fs0 from the FigSet fs1.
fs0 = txCreateFigSet(cv "fs0")
> tx@0x19d35cf0
fs1 = txCreateFigSet(cv "fs1")
> tx@0x19a46350
txAppendObjectToFigSet(fs1 fs0)
> t
txRemoveObjectFromFigSet(fs1 fs0)
> t
Related Topics
Return to top