Hi,
I have a WPF RichText Box and I can type values to it. If I need to paste an EMF file, I am overriding the OnPaste command and need to paste the image.
Paragraph para = new Paragraph(); para.Inlines.Add(myImage3); richTextBox.Document.Blocks.Add(para);
This is not getting insert at the next Caret position. Is there any similar method for adding image similar to
richTextBox.CaretPosition.InsertTextInRun();