Nevron Forum

How Can i get Nodelist this situation

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

By Namsu Park - Monday, December 7, 2015

HI

Now i using Nevron Diagram for .NET

I wanna get Nodes values in the ActiveLayer in this Code

NDrawingView.Values.ActivLayer.[ Nodes ]

when i Debugging at the in code i saw Nodes Value on the Mouse Over
this node Value is On the Diagram Node's Name

but i can't Reffercence this value

so.. how can i solve this problem..?

plz...give me your knowledge

By Nevron Support - Tuesday, December 8, 2015

Hi,

To get all nodes in the active layer of a drawing document, you should use its Children method:

NNodeList nodes = document.ActiveLayer.Children(null);