How to export the grid to excel with formatted text in WinForms GridGroupingControl?
Export the grid to excel with formatted text
In order to export the number or text format in WinForms GridGroupingControl as same in grid to excel, ExportMode property of GridGroupingExcelConverterControl can be set to Text mode.
C#
this.gridGroupingControl1.TableDescriptor.Columns["CategoryID"].Appearance.AnyRecordFieldCell.Format = "##.##";
private void btnExport_Click(object sender, EventArgs e)
{
ExcelEngine engine = new ExcelEngine();
IApplication app = engine.Excel.Application;
IWorkbook book = app.Workbooks.Create();
book.Version = ExcelVersion.Excel2013;
app.DefaultVersion = ExcelVersion.Excel2013;
IWorksheet sheets = book.Worksheets[0];
ExcelExportingOptions options = new ExcelExportingOptions();
excelConverter.ExportStyle = true;
excelConverter.ExportMode = GridGroupingExcelConverterBase.ExportingMode.Text;
excelConverter.ExportToExcel(this.gridGroupingControl1, sheets, options);
book.SaveAs("Sample.xlsx");
Process.Start("Sample.xlsx");
}
VB
Me.gridGroupingControl1.TableDescriptor.Columns("CategoryID").Appearance.AnyRecordFieldCell.Format = "##.##"
Private Sub btnExport_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim engine As New ExcelEngine()
Dim app As IApplication = engine.Excel.Application
Dim book As IWorkbook = app.Workbooks.Create()
book.Version = ExcelVersion.Excel2013
app.DefaultVersion = ExcelVersion.Excel2013
Dim sheets As IWorksheet = book.Worksheets(0)
Dim options As New ExcelExportingOptions()
excelConverter.ExportStyle = True
excelConverter.ExportMode = GridGroupingExcelConverterBase.ExportingMode.Text
excelConverter.ExportToExcel(Me.gridGroupingControl1, sheets, options)
book.SaveAs("Sample.xlsx")
Process.Start("Sample.xlsx")
End Sub
The screenshots below illustrate exporting the Grid to Excel
Samples:
C#: Format_Export_CS
VB: Format_Export_VB
Conclusion
I hope you
enjoyed learning about how to export the grid to excel with formatted text in
WinForms GridGroupingControl.
You can refer to our WinForms GridGroupingControl feature tour page to know about its other groundbreaking feature representations and WinForms GridGroupingControl documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!