Search found 3 matches
- 12 Dec 2023, 11:02
- Forum: CAD .NET
- Topic: CADInsert move to multiple layers
- Replies: 4
- Views: 2088
Re: CADInsert move to multiple layers
thank you now it works fine
- 01 Dec 2023, 13:01
- Forum: CAD .NET
- Topic: CADInsert move to multiple layers
- Replies: 4
- Views: 2088
Re: CADInsert move to multiple layers
Hi Catherine, here a part of the code: how can I send you the GDS? private CADEntity CloneEntity(CADEntity src) { CADEntity result = (CADEntity)Activator.CreateInstance(src.GetType()); result.AssignEntity(src); if (result.EntType == EntityType.Attrib) (result as CADAttrib).Value = (src as CADAttrib)...
- 28 Nov 2023, 18:16
- Forum: CAD .NET
- Topic: CADInsert move to multiple layers
- Replies: 4
- Views: 2088
CADInsert move to multiple layers
Hello I have a GDS File with a CADBlock used in many CADInsert. I need to color some of these in different colors; so I'm trying to achieve this by moving the CADInsert to new layers and assign diferrent colors to those new layers. I clone the block and assignt it to the new layer and to the Insert ...