I am using WinForm and export the radgridview to pdf. I want the top header row has some grey color to distinguish it as header row. How to do that? Can I change the TableBorderThickness to be less than 1?
ExportToPDF exporter = new ExportToPDF(this.radGridView1);
exporter.TableBorderThickness = 1;
Thanks.