Articles in this section
Category / Section

How do I prevent the links from user selection/ manipulation?

1 min read

How do I prevent the links from user selection/ manipulation?

We can prevent the links from the user selection by using EditStyle class. By diabling the Enabled property of EditStyle we can diable the selection over the nodes links.

C#

//Creating Line connector
LineConnector conn = new LineConnector(new PointF(1, 1), new PointF(2, 2));
//Disabling selection of the lineconnector
conn.EditStyle.Enabled = false;

 

VB

''Creating Line connector
Dim conn As LineConnector = New LineConnector(New PointF(1, 1), New PointF(2, 2))
''Disabling selection of the lineconnector
conn.EditStyle.Enabled = False

 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied