dbRemoveFigFromFigGroup
dbRemoveFigFromFigGroup(
d_figGroupId
d_figId
)
=> t / nil
Description
Removes a figure from a figGroup object.
Arguments
Value Returned
Examples
Removes the figure figOfRect from the figGroup figGroup1.
dbRemoveFigFromFigGroup(figGroup1 figOfRect)
Deletes a figGroup and all its members. First retrieves all the members and removes them from the figGroup and then deletes the group.
for(fig figGroup~>members
dbRemoveFigFromFigGroup(fig figGroup)
)
dbDeleteObject(figGroup)
Related Topics
FigGroup Creation and Modification Functions
Return to top