Daniel Carvajal

Results 167 comments of Daniel Carvajal

You just need to include the folder, together with the file name, where you want to save the file. You can use absolute and relative paths. The base folder when...

I do not see a problem with your file. Always check with the latest source code before posting an issue, it may be already resolved.

In English, I don't speak a word of Chinese. Sorry.

The DXF file you uploaded contains a multiline style with no name, that should never happen. I will add a workaround for that but, in any case, no program should...

There are two samples in the TestDxfDocument project, look for the methods called "ReadWriteFromStream" and "ReadWriteFromStream2". Those methods use the FileStream and MemoryStream, to work the stream needs to have...

You cannot do that, the information stored in the DxfDocument must be saved in one go. It is not like you can easily save a single entity, the information needed...

Do you mean [this](https://github.com/haplokuon/netDxf/issues/27)?

The problem lies with the attribute definitions in a couple blocks that were created with the multiple lines option. They are not supported, it is very messy the way the...

Yes you can. Check the Create and Load methods of the Block class. To add AttriubteDefinitions to the model space access the associated block of the model Layout. One way...

Use the Insert's Scale property. ```c# Insert insert = new Insert(myBlock) { Position = new Vector3(10, 10, 0), Scale = new Vector3(1, 2, 1) }; ```