Nevron Forum

Change properties on a line

https://www.nevron.com/Forum/Topic7465.aspx

By Luis Miguel Perez Lopez - Thursday, February 14, 2013

I have the following code:

Call DrawingView.Controller.Tools.SingleEnableTool(NDWFR.ToolCreateConnector)


Dim tool As NCreateConnectorTool = TryCast(DrawingView.Controller.Tools.GetToolByName(NDWFR.ToolCreateConnector), NCreateConnectorTool)
tool.ConnectorType = ConnectorType.Line

With this code I allow the user to create a line in the drawingview. The problem is that I need change the properties of the line.how I can change the properties of the line once the user finishes drawing the line?