dbMakeFigSetGroup
dbMakeFigSetGroup(d_cellView T_figSet) =>d_figSetGroup/ nil
Description
Creates a FigSetGroup in the specified cellview and populates it with the contents of the specified FigSet.
The name for this FigSetGroup is the same as that of the FigSet. If a FigSetGroup with this name already exists, its contents are cleared, and it is populated from the FigSet.
Arguments
Value Returned
Examples
Creates a FigSetGroup fsgroup1 in the cellview cv.
fs1 = txCreateFigSet(cv "figSet1")
> tx@0x362ed0d0
txAppendObjectToFigSet(fs1 txCreateFigSet(cv "figSet2"))
> t
fsgroup1 = dbMakeFigSetGroup(cv fs1)
> db:0x32e3f19b
(mapcar 'dbGetFigSetGroupName dbGetCellViewFigSetGroups(cv))
> ("figSet1" "figSet2")
Related Topics
Return to top