Proper way to remove shapes from DIagram? Memory leak?


Author
Message
Jason Irby
Jason Irby
Forum Member (41 reputation)Forum Member (41 reputation)Forum Member (41 reputation)Forum Member (41 reputation)Forum Member (41 reputation)Forum Member (41 reputation)Forum Member (41 reputation)Forum Member (41 reputation)Forum Member (41 reputation)
Group: Forum Members
Posts: 59, Visits: 77

1.  What is the proper way to remove a NShape or NGroup from a NDrawingDocument?
2.  What is the proper way to clear out all shapes from  a NDrawingDocument?

I have been using:
mydocument.ActiveLayer.RemoveChild(aShape);
mydocument.ActiveLayer.RemoveAllChildren();

My problem is that in testing with .Net Memory Profiler, I am seeing the number of NGroups continue to grow even though I thought I had removed them.  

They seem to be held by the document.EventSinkService in a field call "|1|||I||" what ever the heck that is.

AM I doing it right?

Thanks in advance.

Jason



Nevron Support
Nevron Support
Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)
Group: Administrators
Posts: 3.1K, Visits: 4.2K
Hi Jason,

Yes you are removing the shapes correctly. If the shapes are however connected you may consider the NBatchDelete to perform the removal. For an example see the following topic:
Diagram for .NET > User's Guide > Document Object Model > Batches

The memory leak may occur if you locally subscribe for events of the shapes for example like that:
shape.BoundsChanged += somedelegate;

Because we wanted to optimize the memory footprint and performance of shapes, the shapes do not have local events declared on them, but rather use the EventSinkService to record "per node" events. This helps us for example temporary "block" all events when performance is required - for example during BeginUpdate()/EndUpdate() of the drawing.

You are right however that this can generate a memory leak. To detach a shape from all events for which you have locally subscribed you can use the following code:

drawingdocument.EventSinkService.RemoveAllNodeEventListeners(shape);




Best Regards,
Nevron Support Team


GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic
1 active, 1 guest, 0 members, 0 anonymous
No members currently viewing this topic!

Login

Explore
Messages
Mentions
Search