Completed
Last Updated: 11 Sep 2015 15:55 by Brennan
ADMIN
Hristo
Created on: 07 May 2015 11:18
Category: RichTextEditor
Type: Bug Report
2
FIX. RadRichTextEditor - memory leak when the document is rapidly changed
When the RadRichTExtEditor.Document is rapidly changed not all memory is released

Workaround: 
Point loc = radRichTextEditor1.Location;
Size size = radRichTextEditor1.Size;
radRichTextEditor1.Dispose();
radRichTextEditor1 = new RadRichTextEditor();
radRichTextEditor1.Location = loc;
radRichTextEditor1.Size = size;

this.Controls.Add(radRichTextEditor1);
1 comment
Brennan
Posted on: 11 Sep 2015 15:55
deleted by Brennan