CADPolyLine CADVertex

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
jcasasm
Posts: 5
Joined: 17 May 2020, 12:36

CADPolyLine CADVertex

Post by jcasasm » 17 May 2020, 12:40

Hello, in a CADPolyLine figure with Vertex close, how can I identify the CADVertex that is selected by the user

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: CADPolyLine CADVertex

Post by support » 18 May 2020, 04:40

Hello,

Does the user select a CADVertex by a mouse click?

Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

jcasasm
Posts: 5
Joined: 17 May 2020, 12:36

Re: CADPolyLine CADVertex

Post by jcasasm » 18 May 2020, 06:42

Hello, if the user selects the vertex with the click

jcasasm
Posts: 5
Joined: 17 May 2020, 12:36

Re: CADPolyLine CADVertex

Post by jcasasm » 18 May 2020, 06:43

Hello, if the user selects the vertex with the click

jcasasm
Posts: 5
Joined: 17 May 2020, 12:36

Re: CADPolyLine CADVertex

Post by jcasasm » 18 May 2020, 11:27

The selected property of all CADVertex gives me false

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: CADPolyLine CADVertex

Post by support » 18 May 2020, 19:54

Hello,

CADVertex is not an entity and cannot be selected. However, you can determine if some CADVertex was clicked when selecting a CADPolyLine entity with a mouse in CADEditorControl:

Code: Select all

cadEditorControl1.EditorCADPictureBox.MouseDown += EditorCADPictureBox_MouseDown;
...

void EditorCADPictureBox_MouseDown(object sender, MouseEventArgs e)
{
    CADVertex result = new CADVertex();
    result.Point = new DPoint(0, 0, 0);

    DPoint point = cadEditorControl1.GetRealPoint(e.X, e.Y, false, true);
    cadEditorControl1.Image.Selector.UseShiftToAddSelected = true;
    CADEntity entity = cadEditorControl1.Image.Selector.SelectExt(e.X, e.Y, false, true);
    if (entity.EntType == EntityType.Polyline)
    {
        CADPolyLine polyline = entity as CADPolyLine;
        foreach (CADVertex vx in polyline.Vertexes)
        {
            DPoint vxPoint = vx.Point;
            vxPoint.X = Math.Round(vx.Point.X, 4);
            vxPoint.Y = Math.Round(vx.Point.Y, 4);
            if (vxPoint.Equals(point))
            {
                result = vx;
                break;
            }
        }
    }
}
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

jcasasm
Posts: 5
Joined: 17 May 2020, 12:36

Re: CADPolyLine CADVertex

Post by jcasasm » 20 May 2020, 10:11

Thanks Mikhail

kittysoman2013
Posts: 1
Joined: 24 May 2020, 15:25
Location: https://giupviectheogio.com/
Contact:

Re: CADPolyLine CADVertex

Post by kittysoman2013 » 02 Jun 2020, 00:53

Thanks :)
Hello, My name is Soman, nice to meet you

Post Reply