Hi there
I want to use RichTextBox in confirmation dialog (using docx templates) and insert string and Images at corresponding bookmark position.
Need help - thanks!
I want to use RichTextBox in confirmation dialog (using docx templates) and insert string and Images at corresponding bookmark position.
foreach (BookmarkRangeStart bm in radRichTextBox1.Document.GetAllBookmarks())
{
switch (bm.Name)
{
case 'OrderNo':
//how to replace only content of bookmark leaving formating and bookmark
break;
...
}
}
Need help - thanks!