Search found 48 matches
- 28 Mar 2023, 07:20
- Forum: CAD .NET
- Topic: Change Block name (EntName)
- Replies: 1
- Views: 2341
Change Block name (EntName)
Hello I want to modify the block name(EntName) created before loading the CADDimension created in the code that creates the dimension line. The problem is that when a block with the same EntName already exists in the drawing, if AddEntity() is executed after Loads(dimension), it is overwritten. var ...
- 29 Nov 2021, 10:59
- Forum: CAD .NET
- Topic: CADDimension Examples
- Replies: 4
- Views: 3580
Re: CADDimension Examples
Hello Mikhail
Thank you for your code.
However, the dimension is broken down when moving a line.
The symptom is the same as the old post.
(viewtopic.php?f=15&t=10574)
Maybe you missed something.
Please check it again.
Thank you.
Thank you for your code.
However, the dimension is broken down when moving a line.
The symptom is the same as the old post.
(viewtopic.php?f=15&t=10574)
Maybe you missed something.
Please check it again.
Thank you.
- 23 Nov 2021, 10:16
- Forum: CAD .NET
- Topic: CADDimension Examples
- Replies: 4
- Views: 3580
CADDimension Examples
Hello Mikhail Your code helped me a lot.( https://cadsofttools.com/forum/viewtopic.php?f=15&t=10574 ) However, I'd like to know how to create different cases of CADDimension such as diagonal, arc and etc. Can you provide some example codes for them? The 'Help' document is not enough for me to unders...
- 18 Nov 2021, 13:22
- Forum: CAD .NET
- Topic: Vertical dimension bug
- Replies: 2
- Views: 2692
Re: Vertical dimension bug
Hello Mikhail
Thank you so much. It works very well.
Thank you so much. It works very well.

- 15 Nov 2021, 12:30
- Forum: CAD .NET
- Topic: Vertical dimension bug
- Replies: 2
- Views: 2692
Vertical dimension bug
Hello I got a vertical CADDimension issue. After creating a vertical dimension line, save it as a '.dwg' file and open it. However, if you edit one point on the dimension line, the dimension line itself is crushed. I tried setting it in various ways and cloning the previously created vertical dimens...
- 10 Jul 2021, 12:12
- Forum: CAD .NET
- Topic: SaveAsDWG() Failure
- Replies: 5
- Views: 4340
Re: SaveAsDWG() Failure
Hello Mikhail
Thank you so much. I will also check if the person made it used some AutoCAD plugin.
After investigation please let me know. It would be useful for us.
Thank you again.
Thank you so much. I will also check if the person made it used some AutoCAD plugin.
After investigation please let me know. It would be useful for us.
Thank you again.
- 07 Jul 2021, 13:20
- Forum: CAD .NET
- Topic: SaveAsDWG() Failure
- Replies: 5
- Views: 4340
Re: SaveAsDWG() Failure
Oh~ I missed the directory name.
This is the correct link.
http://magzog.com/caddotnet/input.zip
Thank you.
This is the correct link.
http://magzog.com/caddotnet/input.zip
Thank you.
- 06 Jul 2021, 11:29
- Forum: CAD .NET
- Topic: SaveAsDWG() Failure
- Replies: 5
- Views: 4340
SaveAsDWG() Failure
Hello I found a .dwg file that is not saved. Could you please check why the method SaveAsDWG() returns false? http://magzog.com/input.zip string filepath = @"../input.dwg"; var cadImage = CADImage.CreateImageByExtension(filepath); cadImage.LoadFromFile(filepath); if(CADImport.Export.CADtoDWG.SaveAsD...
- 09 Mar 2021, 04:27
- Forum: CAD .NET
- Topic: The arc line shifting on CADLWPolyline deep cloned
- Replies: 1
- Views: 2900
Re: The arc line shifting on CADLWPolyline deep cloned
Oh... I found what the problem was...
One of my company colleagues informed me that I could type the command "REGEN" in AutoCAD.
So now I know that it is not a problem exactly.
However, is there a way to show the correct design without the command 'REGEN' when opening the .dwg file?
One of my company colleagues informed me that I could type the command "REGEN" in AutoCAD.
So now I know that it is not a problem exactly.
However, is there a way to show the correct design without the command 'REGEN' when opening the .dwg file?
- 08 Mar 2021, 08:07
- Forum: CAD .NET
- Topic: The arc line shifting on CADLWPolyline deep cloned
- Replies: 1
- Views: 2900
The arc line shifting on CADLWPolyline deep cloned
Hello There is only one closed CADLWPolyLine with arcs in the polylineArc.dwg file. After cloning the polyline one time, arc lines are shifted a little. When I clone the polyline several times, the arc lines are shifted more. I used the DeepCloneObject() method from https://cadsofttools.com/forum/vi...
- 25 Feb 2021, 05:45
- Forum: CAD .NET
- Topic: Background Mask of CADMText
- Replies: 2
- Views: 5404
Re: Background Mask of CADMText
Ok. Thank you.
- 24 Feb 2021, 12:09
- Forum: CAD .NET
- Topic: Moving PolyLine, Polygon and so on
- Replies: 2
- Views: 2661
Re: Moving PolyLine, Polygon and so on
I get it. Thank you.
- 23 Feb 2021, 13:47
- Forum: CAD .NET
- Topic: SaveAsDWG() exports 10 times bigger file size
- Replies: 7
- Views: 5110
Re: SaveAsDWG() exports 10 times bigger file size
I see. Thank you Mikhail.
- 22 Feb 2021, 04:06
- Forum: CAD .NET
- Topic: Background Mask of CADMText
- Replies: 2
- Views: 5404
Background Mask of CADMText
Hello
I don't know how to set a background mask for CADMText.
If it is not available, can you let me know an alternative if you have one?
Thank you
I don't know how to set a background mask for CADMText.
If it is not available, can you let me know an alternative if you have one?
Thank you
- 22 Feb 2021, 03:16
- Forum: CAD .NET
- Topic: Moving PolyLine, Polygon and so on
- Replies: 2
- Views: 2661
Moving PolyLine, Polygon and so on
Hello I am trying to clone entities and move. Some entities such as CADText are simple to move using point property. However, entities like CADLWPolyLine and CADPolygon are not easy to move, because they contain multiple points. Is there a way to move them(CADLWPolyLine, CADPolygon...) easily? Thank...