BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
DataGridPdfExportingController pdfExport = new DataGridPdfExportingController();
pdfExport.RowExporting += PdfExport_RowExporting;
private void PdfExport_RowExporting(object sender, DataGridRowPdfExportingEventArgs e)
{
e.PdfGrid.Columns[2].Width = 200;
} |