@martin.mardikas wrote:
.... what are lwpolylines over here and how can i find them. Because all the objects here are polylines.
You can find them with what I suggested in Post 2, with either the AutoLisp function, or Qselect by picking Polyline in the Object type pull-down list [and don't forget Select All in the Operator pull-down list]. You can find the "heavy" ones in the same way, choosing 2D Polyline instead, or with this slightly different AutoLisp function:
(sssetfirst nil (ssget "_X" '((0 . "POLYLINE"))))
[Yes, it is confusing that "lightweight" ones are called POLYLINE in the Qselect list and the Properties box, but are called LWPOLYLINE in entity data and (ssget), while "heavy" ones are the ones called POLYLINE in entity data and (ssget), and either 2D POLYLINE or 3D POLYLINE in Qselect and Properties. They didn't design all of that very well for clarity....]
You can use the CONVERTPOLY command to change either kind [of flat ones -- not 3D] into the other kind.
Kent Cooper, AIA