Group: Forum Members
Last Active: 5 days ago @ 9:50 PM
Posts: 10,
Visits: 362
|
Hi , Is it possible to set visibility of NPorts 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 Month
Posts: 3,055,
Visits: 4,052
|
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
|