c# - Telerik gridview export images not working winforms -


i trying export following gridview (winforms project) telerik export library:

enter image description here

output:

enter image description here

code:

            exporttopdf pdfexporter = new exporttopdf(this.systemgridview);             pdfexporter.fileextension = "pdf";             pdfexporter.exportvisualsettings = true;             pdfexporter.hiddencolumnoption = hiddenoption.donotexport;             pdfexporter.pdfexportsettings.enablecopy = true;             pdfexporter.runexport(filename); 

it's possible export images library? i've found link, it's outdated.

thank you!

found:

gridviewpdfexport pdfexporter = new gridviewpdfexport(this.radgridview1); pdfexporter.runexport(@"c:\new.pdf", new pdfexportrenderer()); 

link


Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -