-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You are using AutoCad, don't you? Well, you just hit one of its everlasting bugs. You can set the DxfDocument.BuildDimensionBlocks property to true before adding your block to the document. It will create the blocks that make up the graphical representation of the dimension, but keep in mind that the built in dimension constructor in netDxf is limited, it will not use the full range of properties available in the dimension style. Also you might consider to use groups instead, if you can. |
Beta Was this translation helpful? Give feedback.
You are using AutoCad, don't you? Well, you just hit one of its everlasting bugs. You can set the DxfDocument.BuildDimensionBlocks property to true before adding your block to the document. It will create the blocks that make up the graphical representation of the dimension, but keep in mind that the built in dimension constructor in netDxf is limited, it will not use the full range of properties available in the dimension style. Also you might consider to use groups instead, if you can.