Nevron Forum
Back
Login
Register
Login
Register
Home
»
Nevron Vision for NET
»
Nevron Diagram for .NET
»
pass trough all shapes in all layers
pass trough all shapes in all layers
Post Reply
pass trough all shapes in all layers
View
Flat Ascending
Flat Descending
Threaded
Options
Subscribe to topic
Print This Topic
Goto Topics Forum
Author
Message
Richard Dubé
Richard Dubé
posted 8 Years Ago
ANSWER
Topic Details
Group: Forum Members
Posts: 7,
Visits: 85
Hi,
i made a group of nodes wich i group and name it 1
i did find the way to put some protection but my problem is to put the same protection to others layers in this group.
the following code is perfect for the group but if i select let say a group of lines in this group, the name of this group of lines became oubviously the selected group so the name change and the protection did not apply.
private void nDrawingView1_NodeSelected(NNodeEventArgs args)
{
NNodeList nodes = nDrawingView1.Selection.Nodes;
for (int i = 0; i < nodes.Count; i++)
{
NShape shape = nodes[i] as NShape;
string shapesel = shape.Name.ToString();
//MessageBox.Show(shapesel);
if (shapesel == "1")
{
NAbilities protection = shape.Protection;
protection.InplaceEdit = true;
protection.ResizeX = true;
protection.ResizeY = true;
protection.ContextMenuEdit = true;
protection.Group = true;
protection.Ungroup = true;
protection.RemoveElements = true;
shape.Protection = protection;
}
}
}
is there a way to scan trough all layers and apply same protections on all of the shapes and groups ?
thank you
Reply
Like
0
GO
Merge Selected
Merge into selected topic...
Merge into merge target...
Merge into a specific topic ID...
Open Merge
Threaded View
Threaded View
pass trough all shapes in all layers
Richard Dubé
-
8 Years Ago
Hi, You can get all descendant shapes using the following piece of...
Nevron Support
-
8 Years Ago
Post Reply
Similar Topics
Post Quoted Reply
Reading This Topic
Login
Login
Remember Me
Reset Password
Resend Validation Email
Login
Explore
Messages
Mentions
Search