How Can i get Nodelist this situation


https://www.nevron.com/Forum/Topic9483.aspx
Print Topic | Close Window

By Namsu Park - 9 Years Ago
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 - 9 Years Ago
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);