Group: Forum Members
Last Active: 2 Months Ago
Posts: 10,
Visits: 362
|
Hi, Is it possible to set visibility of N Ports under NShape. Ports? Changing color of ports to Transparent would also be helpful. I wish to add Show/Hide Ports control in my software. If it's possible, kindly let me know how. Thank you for your support.
|
Group: Forum Members
Last Active: Last Week
Posts: 3,055,
Visits: 4,058
|
Hi, To hide all ports in a drawing, set the ShowPorts property of the drawing's ScreenVisibility child to false as shown below: NDrawing drawing = drawingView.Content; drawing.ScreenVisibility.ShowPorts = false;
NDrawing drawing = drawingView.Content;
drawing.ScreenVisibility.ShowPorts = false;
For more information, see the NOV Diagram Drawings documentation topic.
Best Regards, Nevron Support Team
|