ImageInline
The ImageInline class allows images to be displayed inside the document. The ImageInline can only be used in the context of a Paragraph class. As it is an inline element, it gets placed after the previous inline element until the end of the line. If there is no space left, the element will be wrapped on the next line.
This topic will explain you how to use the ImageInline element.
Supported Image Extensions
With RadRichTextBox, you can work with images from the following file formats:
- JPG
- JPEG
- PNG
- BMP
- TIFF
- TIF
- GIF
- ICO
- ICON
- WMF
- EMF
Add in XAML
Here is an example of an ImageInline element used in XAML at design time.
Add in Code Behind
Here is an example of how to add an ImageInline element in the code behind.
Add via UI
Here is an example of how to allow the user to select an image and add it to the document. For that purpose a RadButton and an OpenFileDialog are used. When the file stream from the OpenFileDialog gets obtained, it's passed to the InsertImage() API method of the RadRichTextBox. This method takes as an argument the extension of the image, which can be again obtained from the FileInfo object. After calling the InsertImage() method, the image will appear in the document with its default width and height.