Completed
Last Updated: 11 Dec 2015 14:55 by ADMIN
ADMIN
Ivan Petrov
Created on: 01 Nov 2012 04:22
Category: GridView
Type: Feature Request
12
ADD. RadGridView - ExportToHTML - add the functionality to export images from image columns.
When exporting to HTML or PDF image columns should be exported properly.
1 comment
ADMIN
Ralitsa
Posted on: 28 May 2015 14:06
In Q2 2015 we will introduce two properties in the ExportToHTML: 
 - The ExportImages property indicates whether to export image or not.
 - The ScaleImages property indicates whether to scale exported images.

Here is the code snippet: 
ExportToHTML exporter = new ExportToHTML(this.radGridView1);
exporter.ScaleImages = true;
exporter.ExportImages = true;
exporter.RunExport(fileName);