dbDeleteFigSetGroup
dbDeleteFigSetGroup(
d_figSetGroup
)
=> t / nil
Description
Deletes the specified FigSetGroup, including the hierarchy of FigSetGroups that may exist in this FigSetGroup.
Arguments
Value Returned
Examples
fs1 = txCreateFigSet(cv "figSet1")
> tx@0x362ed0d0
txAppendObjectToFigSet(fs1 txCreateFigSet(cv "figSet2"))
> t
fsgroup1 = dbMakeFigSetGroup(cv fs1)
> db:0x32e3f19b
dbGetCellViewFigSetGroups(cv)
> (db:0x32e3f19b db:0x32e3f19c)
dbDeleteFigSetGroup(fsgroup1)
> t
dbGetCellViewFigSetGroups(cv)
> nil
Related Topics
Return to top