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 -

python - ValueError: could not convert string to float -

php - Laravel Get all child node count with condition -