This repository was archived by the owner on Oct 11, 2023. It is now read-only.
Replies: 2 comments
-
|
Managed to work it out .......etc |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Thank you. It will probably help me later. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to draw blocks (i.e. Inserts) I need to access the drawing primitives from the Block structure
I am getting confused at how to do this.
I can access the Blok I require form
Block aBlock = dxf.Blocks[dxfInsert.ElementAt(i).Block.Name];
However I can't seem to access the drawing primitive (line , text, circle etc).
I have tried this
for(int k=0; k < aBlock.Entities.Count;k++)
{
netDxf.Entities.EntityObject ts = aBlock.Entities.ElementAt(k);
if (ts.GetType() == netDxf.Entities.Line)
;
Any suggestions appreciated. I only started looking at this library two days ago so am fumbling around in the dark abit.
Beta Was this translation helpful? Give feedback.
All reactions