Change the postioning of the image.

How can you change the postion of an image in the rich text box. For example behind text, square, in text line, etc.

and how can i rotate an image in the rich text box.




Answer this question

Change the postioning of the image.

  • Annihil8

    In order to work with images in a RTF you must use the clipboard as a go-between....

    Me.RichTextBox1.SelectionStart = 0

    Me.RichTextBox1.Paste()

    That would paste the contents of the clipboard to the beginning of the rtbox

    In order to rotate the image you would have to cut it from the rtbox.....use the image rotateflip method and then paste it back to the rtbox in the new location



  • Change the postioning of the image.