Albert Domenech
Albert Domenech
Hi @brull, Can you provide a file as an example? it would be good to detect bottlenecks and have an example. Thanks.
Hi @ChristopherVR It seems that SysCAD **does not organize** the file using `Subclasses`, unfortunately the current state of this project does not allow this kind of dxf format, the intention...
The current Dxf reader can read this kinds of files, but I've noticed that they are incomplete, there are missing elements and the result file is an incomplete `CadDocument` that...
Hi @Gora1000 To get the attributes for an instance of a block you have to get all the Inserts in the model, like: ```C# CadDocument doc = DwgReader.Read(path); foreach (Insert...
Each Layout has it's own Block associated to it, which is the one that contains all the entities, you can iterate throw all layouts using: ```C# foreach (Objects.Layout layout in...
Hi @sigster What do you mean by control? Are you referring to the header variables?
These values are set by default but they are not constraint to anything in particular. If you want a sort of defaults for your document you can change the values...
It seems that, there is a limitation with colors, the colors in the header are written in a different way than the other entities and by now the writer cannot...
Hi @sigster In the image you seem to be looking at the equivalent in `ACadSharp` `CadDocument.RootDictionary`, you may be able to access into the dictionary using `CadDocument.RootDictionary["ACAD_OC"]` which I'm guessing...
Hi @sigster This issue was fixed in this PR: - https://github.com/DomCR/ACadSharp/pull/254 Please check that you have the latest branch on master or the latest Nuget Package. If the still appears...