Skip to content

Commit 9feb0ca

Browse files
authored
Merge pull request #4 from SyncfusionExamples/924633-TradeMark
924633 - Added the Trademark Symbol in readme files
2 parents 16c204e + 20d9861 commit 9feb0ca

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Export Data to Excel in C#
2-
<a href="https://www.syncfusion.com/excel-framework/net"><strong>Syncfusion Excel (XlsIO) library</strong></a> is a .NET Excel library that allows the user to export data to Excel in C# and VB.NET from various data sources like data tables, arrays, collections of objects, databases, CSV/TSV, and Microsoft Grid controls in a very simple and easy way. Exporting data to Excel helps in visualizing the data in a more understandable fashion. This feature helps to generate financial reports, banking statements, and invoices, while also allowing for filtering large data, validating data, formatting data, and more.
2+
<a href="https://www.syncfusion.com/excel-framework/net"><strong>Syncfusion&reg; Excel (XlsIO) library</strong></a> is a .NET Excel library that allows the user to export data to Excel in C# and VB.NET from various data sources like data tables, arrays, collections of objects, databases, CSV/TSV, and Microsoft Grid controls in a very simple and easy way. Exporting data to Excel helps in visualizing the data in a more understandable fashion. This feature helps to generate financial reports, banking statements, and invoices, while also allowing for filtering large data, validating data, formatting data, and more.
33

44
You can refer the <a href="https://help.syncfusion.com/file-formats/xlsio/working-with-data?_ga=2.120276040.1381167263.1557135100-214292665.1551328372#importing-data-to-worksheets">documention</a> to know more in detail.
55

6-
Essential XlsIO provides the following ways to export data to Excel:
6+
Essential&reg; XlsIO provides the following ways to export data to Excel:
77

88
1. DataTable to Excel
99
2. Collection of objects to Excel
@@ -92,7 +92,7 @@ value = instance.ImportDataTable(dataTable, namedRange, showColumnName, rowOffse
9292

9393
Exporting data from a collection of objects to an Excel worksheet is a common scenario. However, this option will be helpful if you need to export data from a model to an Excel worksheet.
9494

95-
The Syncfusion Excel (XlsIO) library provides support to export data from a collection of objects to an Excel worksheet.
95+
The Syncfusion&reg; Excel (XlsIO) library provides support to export data from a collection of objects to an Excel worksheet.
9696

9797
Exporting data from a collection of objects to an Excel worksheet can be achieved through the ImportData method. The following code example shows how to export data from a collection to an Excel worksheet.
9898

@@ -185,7 +185,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
185185

186186
Excel supports creating Excel tables from different databases. If you have a scenario in which you need to create one or more Excel tables from a database using Excel, you need to establish every single connection to create those tables. This can be time consuming, so if you find an alternate way to generate Excel tables from database very quickly and easily, wouldn’t that be your first choice?
187187

188-
The Syncfusion Excel (XlsIO) library helps you to export data to Excel worksheets from databases like MS SQL, MS Access, Oracle, and more. By establishing a connection between the databases and Excel application, you can export data from a <strong>database to an Excel table</strong>.
188+
The Syncfusion&reg; Excel (XlsIO) library helps you to export data to Excel worksheets from databases like MS SQL, MS Access, Oracle, and more. By establishing a connection between the databases and Excel application, you can export data from a <strong>database to an Excel table</strong>.
189189

190190
You can use the <em><a href="https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.Base~Syncfusion.XlsIO.IListObject~Refresh.html">Refresh()</a></em><em> </em>option to update the modified data in the Excel table that is mapped to the database.
191191

@@ -229,9 +229,9 @@ using (ExcelEngine excelEngine = new ExcelEngine())
229229

230230
<h2 id="DataGrid-GridView-DataGridView-to-Excel">4. Export data from DataGrid, GridView, DatGridView to Excel</h2>
231231

232-
Exporting data from <a href="https://docs.microsoft.com/en-us/dotnet/framework/winforms/controls/datagrid-control-overview-windows-forms">Microsoft grid</a> controls to Excel worksheets helps to visualize data in different ways. You may work for hours to iterate data and its styles from grid cells to export them into Excel worksheets. It should be good news for those who export data from Microsoft grid controls to Excel worksheets, because exporting with Syncfusion Excel library is much faster.
232+
Exporting data from <a href="https://docs.microsoft.com/en-us/dotnet/framework/winforms/controls/datagrid-control-overview-windows-forms">Microsoft grid</a> controls to Excel worksheets helps to visualize data in different ways. You may work for hours to iterate data and its styles from grid cells to export them into Excel worksheets. It should be good news for those who export data from Microsoft grid controls to Excel worksheets, because exporting with Syncfusion&reg; Excel library is much faster.
233233

234-
Syncfusion Excel (XlsIO) library supports to <a href="https://help.syncfusion.com/file-formats/xlsio/working-with-data#importing-data-from-microsoft-grid-controls-to-worksheet">exporting data from Microsoft Grid controls</a>, such as DataGrid, GridView, and DataGridView to Excel worksheets in a single API call. Also, you can export data with header and styles.
234+
Syncfusion&reg; Excel (XlsIO) library supports to <a href="https://help.syncfusion.com/file-formats/xlsio/working-with-data#importing-data-from-microsoft-grid-controls-to-worksheet">exporting data from Microsoft Grid controls</a>, such as DataGrid, GridView, and DataGridView to Excel worksheets in a single API call. Also, you can export data with header and styles.
235235

236236
The following code example shows how to export data from DataGridView to an Excel worksheet.
237237

@@ -284,7 +284,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
284284

285285
Sometimes, there may be a need where an array of data may need to be inserted or modified into existing data in Excel worksheet. In this case, the number of rows and columns are known in advance. Arrays are useful when you have a fixed size.
286286

287-
The Syncfusion Excel (XlsIO) library provides support to export an array of data into an Excel worksheet, both horizontally and vertically. In addition, two-dimensional arrays can also be exported.
287+
The Syncfusion&reg; Excel (XlsIO) library provides support to export an array of data into an Excel worksheet, both horizontally and vertically. In addition, two-dimensional arrays can also be exported.
288288

289289
Let us consider a scenario, “Expenses per Person.” The expenses of a person for the whole year is tabulated in the Excel worksheet. In this scenario, you need to add expenses for a new person, <em>Paul Pogba,</em> in a new row and modify the expenses of all tracked people for the month <em>Dec</em>.
290290

@@ -336,7 +336,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
336336

337337
<a href="https://en.wikipedia.org/wiki/Comma-separated_values">Comma-separated value</a> (CSV) files are helpful in generating tabular data or lightweight reports with few columns and a high number of rows. Excel opens such files to make the data easier to read.
338338

339-
The Syncfusion Excel (XlsIO) library supports opening and saving CSV files in seconds. The below code example shows how to open a CSV file, also save it as XLSX file. Above all, the data is shown in a table with number formats applied.
339+
The Syncfusion&reg; Excel (XlsIO) library supports opening and saving CSV files in seconds. The below code example shows how to open a CSV file, also save it as XLSX file. Above all, the data is shown in a table with number formats applied.
340340

341341
```csharp
342342
using (ExcelEngine excelEngine = new ExcelEngine())
@@ -395,4 +395,4 @@ using (ExcelEngine excelEngine = new ExcelEngine())
395395

396396
<em>Output of CSV converted to Excel</em>
397397

398-
Apart from this, <a href="https://www.syncfusion.com/excel-framework/net">Syncfusion Excel (XlsIO) library</a> provides various other features such as, charts, pivot tables, tables, cell formatting, conditional formatting, data validation, encryption and decryption, auto-shapes, Excel to PDF, Excel to Image, Excel to HTML and more. You can refer to our <a href="https://ej2.syncfusion.com/aspnetcore/XlsIO/Create#/material">online demo samples</a> to know more about all the features.
398+
Apart from this, <a href="https://www.syncfusion.com/excel-framework/net">Syncfusion&reg; Excel (XlsIO) library</a> provides various other features such as, charts, pivot tables, tables, cell formatting, conditional formatting, data validation, encryption and decryption, auto-shapes, Excel to PDF, Excel to Image, Excel to HTML and more. You can refer to our <a href="https://ej2.syncfusion.com/aspnetcore/XlsIO/Create#/material">online demo samples</a> to know more about all the features.

0 commit comments

Comments
 (0)