When I populate a richTextBox with 10 pages. Everything is very slow when manipuling the text inside the control. Deleting 3 lines takes 30 secondes !!
Here is below how I populate the control :
bool hiddenTextFound = false;
FileToConvert = @"K:\Mes Documents\GED\Paces UE3Bis.pdf";
List<string> pages = PDFAHelper.GetPdfDocumentPagesText(FileToConvert, out hiddenTextFound); // This function extracts text from a PDF Text
foreach (string page in pages)
{
radRichTextBox1.Insert(page);
radRichTextBox1.InsertPageBreak();
}
What's wrong with my code?
Thanks Jacques
Here is below how I populate the control :
bool hiddenTextFound = false;
FileToConvert = @"K:\Mes Documents\GED\Paces UE3Bis.pdf";
List<string> pages = PDFAHelper.GetPdfDocumentPagesText(FileToConvert, out hiddenTextFound); // This function extracts text from a PDF Text
foreach (string page in pages)
{
radRichTextBox1.Insert(page);
radRichTextBox1.InsertPageBreak();
}
What's wrong with my code?
Thanks Jacques