Releases a selection set.
(ade_ssfree ss)
Returns T or nil.
ss | Selection set to release. |
Selection sets are returned by a number of Visual LISP functions. See Functions That Return Selection Sets. It is important to release selection sets as you finish with them, because the number allowed is limited. If the number runs out, your application will fail.
The following example allocates a selection set and then releases it.
(setq ss (map_dwgBreakObj sscut boundary skiptopo keepod) ) · · · (setq status (ade_ssfree ss))