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

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -