How to find pictures in richtext, is there any method for doing that?
I need to generate html from richtext so i need to find picture and find on which position is.
This is code which i use to put picture in richtext
Clipboard cl;
Bitmap myBitmap = new Bitmap("c:\\time.png");
Clipboard.SetDataObject(myBitmap);
Clipboard.SetImage(myBitmap);
rchBody.Paste();