Page 1 of 1

Get unique Polyline name?

Posted: 04 May 2010, 17:34
by mattcourtney27
I know its possible to get unique names from the various CADLayers, however is it possible to get the same from the polylines? When I use CADEntity.EntName it always just returns the same value..

I'm wondering if..
1. I'm missing some logic..
2. CAD doesn't store meaningfull names for polylines..

If there is a way to extract the info please provide an example

Re: Get unique Polyline name?

Posted: 06 May 2010, 11:20
by support
Hello.
Unique names supported for layer or layout entities in CAD files. Insert entity have name of contained block. Unique names not provided for most entities such as line, circle, polyline and so on. However any entity in CAD file have its own unique identifier - a handle. You can get entity's handle via CADEntity.Handle property.

Alexander.