Search found 2 matches
- 26 Jan 2023, 06:27
- Forum: CAD .NET
- Topic: How to Determine if a Line Entity is from a Dimension
- Replies: 8
- Views: 4174
Re: How to Determine if a Line Entity is from a Dimension
Unfortunately, this doesn't seem to work. I can indeed ignore dimension types if I am looping though each layer with say a foreach loop foreach (CADImport.CADEntity entity in image.Converter.Entities) However, I need to load all objects and more importantly blocks. So instead of looping though every...
- 20 Jan 2023, 09:01
- Forum: CAD .NET
- Topic: How to Determine if a Line Entity is from a Dimension
- Replies: 8
- Views: 4174
How to Determine if a Line Entity is from a Dimension
I am looping though all my Entities and storing them as line elements (it is what I need to do for my application). image.Converter.Iterate(new CADImport.CADEntityProc(ReadCADEntities), null, cadParams); However, if the line is from a dimension I want to ignore it. How can I determine if the line is...