Hi,
Watch this Video https://autode.sk/2APf8sA
Is it Array, you can delete hold Ctrl key + select object > Erase
Please Mark the Post or Posts as Solution(s) to help others find the answer quickly. If your issue persists,
Please give me a bit more detail on this issue so we can continue to work towards getting this solved.
AutoCAD Certified Professional
Thanks You
Jayhar.M.J
Helpful Links: Prepare your computer for download | Autodesk Virtual Agent | Clean Uninstall | Steps for Setting-Up Student Software
Here is a routine that allows you to select objects inside the existing polyline (crossing or window polygon type of selection) or laying on the polyline (fence type), which you need in this case.
(vl-load-com)
(defun c:SelectInside (/ en ss lst ssall tmp head) ;;Select Inside of contour
;;!!!! REQUIRED EXPRESS TOOLS
(if (and (setq en (car (entsel "\nSelect contour: ")))
(wcmatch (cdr (assoc 0 (entget en))) "*POLYLINE")
(or *si-typ*
(initget "Wp Cp F")
(setq *si-typ* (getkword "\nSpecify selection typ polygon [Window/Crossing/Fence]: ")))
)
(progn
(setq lst (ACET-GEOM-OBJECT-POINT-LIST en 1e-3)
lst (mapcar '(lambda (x) (list (car x) (cadr x))) lst))
(while lst
(setq head (car lst)
tmp (cons head tmp)
lst (vl-remove-if
'(lambda (pt) (equal pt head 1e-6))
(cdr lst))))
(setq lst (reverse tmp))
(ACET-SS-ZOOM-EXTENTS (ACET-LIST-TO-SS (list en)))
(command "_.Zoom" "0.95x")
(if (setq ss (ssget (strcat "_" *si-typ*) lst)) ;or WP vs CP
(sssetfirst ss ss))))
(princ)
)
(defun c:SelectInsideReset nil (setq *si-typ* nil) (c:SelectInside) (princ)) ;
In case you don't know how to work with LISP routines, look HERE
How to delete all objects connected on path line ?
kindly see attachment for reference.
Erase command, Fence option. will select and erase all objects that touch the Fence line as you draw it.
Hello..
How to use fence command ?
Kindly share a sample video.
<<<<<< How to use fence command ?
Kindly share a sample video.>>>>>>
How to use fence command, Video is here Click here https://autode.sk/2AX5rYY
Command: E
ERASE
Fence Lasso – Press Space bar to cycle options ___ found Command Erase
Please Mark the Post or Posts as Solution(s) to help others find the answer quickly. If your issue persists,
Please give me a bit more detail on this issue so we can continue to work towards getting this solved.
AutoCAD Certified Professional
Thanks You
Jayhar.M.J
Helpful Links: Prepare your computer for download | Autodesk Virtual Agent | Clean Uninstall | Steps for Setting-Up Student Software
@Anonymous
command: erase
thats it.
If fastsel is a 'unknown command', you have AutoCAD LT version
OR
someone forgot to install the expresstools.
try:
command: EXPRESSTOOLS
isn't working?
then windows, programs and feature, <your product> -> change -> select EXPRESS TOOLS for install
Sebastian