Search found 11 matches

by coo5hda
08 Mar 2019, 16:02
Forum: CAD .NET
Topic: Text-Font
Replies: 3
Views: 9650

Re: Text-Font

The blueprint already contains this text the problem is that it shows it with the characters that appear in the image and does not show the text itself
by coo5hda
06 Mar 2019, 21:06
Forum: CAD .NET
Topic: Text-Font
Replies: 3
Views: 9650

Text-Font

Hi, I have the following issue. Load a dwg which has a layer with text, however by the font type the editor does not show me what it says but a lot of characters. There is some way to change the source of these values when loading the file
by coo5hda
23 Jan 2019, 19:55
Forum: CAD .NET
Topic: CADText it does not show the correct text
Replies: 1
Views: 8721

CADText it does not show the correct text

Hello I have a problem with a CADText, when entering it inside the image it does not show a recognized text, it shows a set of symbols instead of the text, someone can help me know what it can be. CODE : CADText text = new CADText(); text.Point = point; text.Height = 5.0; text.Rotation = 0.0f; text....
by coo5hda
14 Dec 2018, 19:59
Forum: CAD .NET
Topic: Line programmatically
Replies: 1
Views: 8666

Line programmatically

Hello, how could I create a line in the editor that is displayed in real time, similar to the example of the editor. programmatically
by coo5hda
13 Nov 2018, 20:44
Forum: CAD .NET
Topic: Save CADInsert in DXF not work
Replies: 5
Views: 15990

Re: Save CADInsert in DXF not work

This point is always (0,0,0)?
by coo5hda
13 Nov 2018, 19:11
Forum: CAD .NET
Topic: Save CADInsert in DXF not work
Replies: 5
Views: 15990

Re: Save CADInsert in DXF not work

private bool PlaceEntity(CADEntity aEntity) { return PlaceEntity(aEntity, ""); } private bool PlaceEntity(CADEntity aEntity, string aLayoutName) { CADLayout vLayout; if (aLayoutName == "") vLayout = editor.Image.Layouts[0]; else vLayout = editor.Image.Converter.LayoutByName(aLayoutName); if (vLayou...
by coo5hda
13 Nov 2018, 16:02
Forum: CAD .NET
Topic: Save CADInsert in DXF not work
Replies: 5
Views: 15990

Save CADInsert in DXF not work

Hello,
I am adding several CADPolylines in a CADBlock and this last one I add it to a CADInsert which I charge to the CADEditorControl.Image however, when I want to save the elements stored in the CADInsert in DXF format, it does not store the elements nor the CADInsert
by coo5hda
29 Oct 2018, 20:18
Forum: CAD .NET
Topic: Rotate CADInsert
Replies: 3
Views: 11903

Re: Rotate CADInsert

Thanks and can rotate this entity with the mouse
by coo5hda
29 Oct 2018, 20:05
Forum: CAD .NET
Topic: Rotate CADInsert
Replies: 3
Views: 11903

Rotate CADInsert

Hi

I have a CADInsert with several polylines I need to rotate this entity and what are inside it?

Do you have any idea how to do it?
by coo5hda
29 Oct 2018, 15:45
Forum: CAD .NET
Topic: Add polylines in container
Replies: 3
Views: 11728

Re: Add polylines in container

support wrote:
26 Oct 2018, 23:41
Hello,

You can use a CADBlock object as the container for polylines and place the block instance (CADInsert) on the Model layout to allow the user to move the polylines.

Mikhail
Could you help me with an example?
by coo5hda
26 Oct 2018, 23:29
Forum: CAD .NET
Topic: Add polylines in container
Replies: 3
Views: 11728

Add polylines in container

Hello

I need to add 4 polylines in the same container and if the person selects them all move together not separately