Delete a group in ruby
-
How can I remove a group that I have created earlier in a ruby script.
` wandgroep = Sketchup.active_model.active_entities.add_group
....I want to remove the group here.`
-
Assuming you have no more need of the group or its contents use:
wandgroep.erase!
See here:
http://ruby.sketchup.com/Sketchup/Drawingelement.html#erase%21-instance_methodBUT if you want to explode it and put its contents into the group's previous context, use:
wandgroep.explode
See here:
http://ruby.sketchup.com/Sketchup/Group.html#explode-instance_method
Advertisement