Articles in this section
Category / Section

How to export the grid to excel with formatted text in WinForms GridGroupingControl?

2 mins read

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

 

Export the grid to excel with formatted text

Export the grid to excel with formatted text

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’s feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms GridGroupingControl documentation to understand how to present and manipulate data. 

For current customers, you can check out our WinForms from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms GridGroupingControl and other WinForms components.

If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied