Skip to content

Commit 1c4411c

Browse files
authored
Merge pull request #155 from SyncfusionExamples/924528-Add-Readme-Files
924528 - Add Readme Files
2 parents 054e71f + fd6105a commit 1c4411c

File tree

16 files changed

+183
-149
lines changed
  • CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel
  • Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format
  • Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema
  • Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart
  • Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula
  • Create and Edit Table/Create Table/.NET/Create Table/Create Table
  • Data Validation/List Validation/.NET/List Validation/List Validation
  • Excel to CSV/Excel to CSV/.NET/Excel to CSV/Excel to CSV
  • Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF
  • Getting Started/Console/.NET/Create Excel/Create Excel
  • Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table
  • Import and Export Data/DataTable to Worksheet/.NET/DataTable to Worksheet/DataTable to Worksheet
  • Pivot Table/Create Pivot Table/.NET/Create Pivot Table/Create Pivot Table
  • Threaded Comments/Add Comment/.NET/Add Comment/Add Comment
  • Worksheet to Image/Worksheet to Image/.NET/Worksheet to Image/Worksheet to Image
  • XlsIO-Excel-Protect-UnProtect/Protect-Workbook/.NET/Protect-Workbook/ProtectWorkbook

16 files changed

+183
-149
lines changed

CSV to Excel/CSV to Excel/.NET/CSV to Excel/README.md renamed to CSV to Excel/CSV to Excel/.NET/CSV to Excel/CSV to Excel/README.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to convert a CSV to an Excel file??
1+
# Convert a CSV to an Excel document using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **convert a CSV to an Excel document** using C#.
4+
5+
## Steps to convert a CSV to an Excel document programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,15 +11,12 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using Syncfusion.XlsIO;
13-
{% endhighlight %}
14-
{% endtabs %}
16+
```
1517

16-
Step 5: Include the below code snippet in **Program.cs** to convert a CSV to an Excel fil.
17-
{% tabs %}
18-
{% highlight c# tabtitle="C#" %}
18+
Step 5: Include the below code snippet in **Program.cs** to convert a CSV to an Excel document.
19+
```csharp
1920
using (ExcelEngine excelEngine = new ExcelEngine())
2021
{
2122
IApplication application = excelEngine.Excel;
@@ -34,5 +35,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
3435
outputStream.Dispose();
3536
inputStream.Dispose();
3637
}
37-
{% endhighlight %}
38-
{% endtabs %}
38+
```
39+
40+
More information about converting a CSV to an Excel document can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/conversions/csv-to-excel/net/csv-to-excel-conversion) section.

Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/README.md renamed to Conditional Formatting/Create Conditional Format/.NET/Create Conditional Format/Create Conditional Format/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to apply conditional formatting in the worksheet?
1+
# Apply conditional formatting in the worksheet using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **apply conditional formatting in the worksheet** using C#.
4+
5+
## Steps to apply conditional formatting in the worksheet programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,16 +11,13 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using System.IO;
1316
using Syncfusion.XlsIO;
14-
{% endhighlight %}
15-
{% endtabs %}
17+
```
1618

1719
Step 5: Include the below code snippet in **Program.cs** to apply conditional formatting in the worksheet.
18-
{% tabs %}
19-
{% highlight c# tabtitle="C#" %}
20+
```csharp
2021
using (ExcelEngine excelEngine = new ExcelEngine())
2122
{
2223
IApplication application = excelEngine.Excel;
@@ -76,5 +77,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
7677
//Dispose streams
7778
outputStream.Dispose();
7879
}
79-
{% endhighlight %}
80-
{% endtabs %}
80+
```
81+
82+
More information about applying conditional formatting in the worksheet can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-conditional-formatting#create-a-conditional-format) section.

Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/README.md renamed to Convert Excel to JSON/Workbook to JSON with Schema/.NET/Workbook to JSON with Schema/Workbook to JSON with Schema/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to convert an Excel workbook to a JSON file with schema?
1+
# Convert an Excel workbook to a JSON file with schema using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **convert an Excel workbook to a JSON file with schema** using C#.
4+
5+
## Steps to convert Excel workbook to a JSON file with schema programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,17 +11,14 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using System;
1316
using System.IO;
1417
using Syncfusion.XlsIO;
15-
{% endhighlight %}
16-
{% endtabs %}
18+
```
1719

1820
Step 5: Include the below code snippet in **Program.cs** to convert an Excel workbook to a JSON file with schema.
19-
{% tabs %}
20-
{% highlight c# tabtitle="C#" %}
21+
```csharp
2122
using (ExcelEngine excelEngine = new ExcelEngine())
2223
{
2324
IApplication application = excelEngine.Excel;
@@ -47,5 +48,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
4748
//Open JSON with Schema
4849
#endregion
4950
}
50-
{% endhighlight %}
51-
{% endtabs %}
51+
```
52+
53+
More information about converting an Excel workbook to a JSON file with schema can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-json/overview#workbook-to-json-as-schema) section.

Create and Edit Charts/Create Chart/.NET/Create Chart/README.md renamed to Create and Edit Charts/Create Chart/.NET/Create Chart/Create Chart/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to create a chart in the worksheet?
1+
# Create a chart in the worksheet using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **create a chart in the worksheet** using C#.
4+
5+
## Steps to create a chart in the worksheet programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,16 +11,13 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using System.IO;
1316
using Syncfusion.XlsIO;
14-
{% endhighlight %}
15-
{% endtabs %}
17+
```
1618

1719
Step 5: Include the below code snippet in **Program.cs** to create a chart in the worksheet.
18-
{% tabs %}
19-
{% highlight c# tabtitle="C#" %}
20+
```csharp
2021
using (ExcelEngine excelEngine = new ExcelEngine())
2122
{
2223
IApplication application = excelEngine.Excel;
@@ -64,5 +65,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
6465
outputStream.Dispose();
6566
inputStream.Dispose();
6667
}
67-
{% endhighlight %}
68-
{% endtabs %}
68+
```
69+
70+
More information about creating a chart in the worksheet can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-charts#creating-a-chart) section.

Create and Edit Formulas/Set Formula/.NET/Set Formula/README.md renamed to Create and Edit Formulas/Set Formula/.NET/Set Formula/Set Formula/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to set a formula in an Excel cell?
1+
# Set a formula in an Excel cell using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **set a formula in an Excel cell** using C#.
4+
5+
## Steps to set a formula in an Excel cell programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,16 +11,13 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using System.IO;
1316
using Syncfusion.XlsIO;
14-
{% endhighlight %}
15-
{% endtabs %}
17+
```
1618

1719
Step 5: Include the below code snippet in **Program.cs** to set a formula in an Excel cell.
18-
{% tabs %}
19-
{% highlight c# tabtitle="C#" %}
20+
```csharp
2021
using (ExcelEngine excelEngine = new ExcelEngine())
2122
{
2223
IApplication application = excelEngine.Excel;
@@ -42,5 +43,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
4243
//Dispose streams
4344
outputStream.Dispose();
4445
}
45-
{% endhighlight %}
46-
{% endtabs %}
46+
```
47+
48+
More information about setting a formula in an Excel cell can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-formulas#writing-a-formula) section.

Create and Edit Table/Create Table/.NET/Create Table/README.md renamed to Create and Edit Table/Create Table/.NET/Create Table/Create Table/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to create a table in the worksheet?
1+
# Create a table in the worksheet using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **create a table in the worksheet** using C#.
4+
5+
## Steps to create a table in the worksheet programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,17 +11,14 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using System;
1316
using System.IO;
1417
using Syncfusion.XlsIO;
15-
{% endhighlight %}
16-
{% endtabs %}
18+
```
1719

1820
Step 5: Include the below code snippet in **Program.cs** to create a table in the worksheet.
19-
{% tabs %}
20-
{% highlight c# tabtitle="C#" %}
21+
```csharp
2122
using (ExcelEngine excelEngine = new ExcelEngine())
2223
{
2324
IApplication application = excelEngine.Excel;
@@ -39,5 +40,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
3940
inputStream.Dispose();
4041
outputStream.Dispose();
4142
}
42-
{% endhighlight %}
43-
{% endtabs %}
43+
```
44+
45+
More information about creating a table in the worksheet can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-excel-tables#creating-a-table) section.

Data Validation/List Validation/.NET/List Validation/README.md renamed to Data Validation/List Validation/.NET/List Validation/List Validation/README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to set list data validation in Excel?
1+
# Set list data validation in an Excel document using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **set list data validation in an Excel document** using C#.
4+
5+
## Steps to set list data validation in an Excel document programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,16 +11,12 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using System.IO;
1316
using Syncfusion.XlsIO;
14-
{% endhighlight %}
15-
{% endtabs %}
16-
17-
Step 5: Include the below code snippet in **Program.cs** to set list data validation in Excel.
18-
{% tabs %}
19-
{% highlight c# tabtitle="C#" %}
17+
```
18+
Step 5: Include the below code snippet in **Program.cs** to set list data validation in an Excel document.
19+
```csharp
2020
using (ExcelEngine excelEngine = new ExcelEngine())
2121
{
2222
IApplication application = excelEngine.Excel;
@@ -46,5 +46,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
4646
//Dispose streams
4747
outputStream.Dispose();
4848
}
49-
{% endhighlight %}
50-
{% endtabs %}
49+
```
50+
51+
More information about setting list data validation in an Excel document can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-data-validation#list-validation) section.
Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to convert an Excel file to CSV?
1+
# Convert an Excel document to CSV using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **convert an Excel document to CSV** using C#.
4+
5+
## Steps to convert an Excel document to CSV programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,15 +11,12 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using Syncfusion.XlsIO;
13-
{% endhighlight %}
14-
{% endtabs %}
16+
```
1517

16-
Step 5: Include the below code snippet in **Program.cs** to convert an Excel file to CSV.
17-
{% tabs %}
18-
{% highlight c# tabtitle="C#" %}
18+
Step 5: Include the below code snippet in **Program.cs** to convert an Excel document to CSV.
19+
```csharp
1920
using (ExcelEngine excelEngine = new ExcelEngine())
2021
{
2122
IApplication application = excelEngine.Excel;
@@ -31,5 +32,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
3132
outputStream.Dispose();
3233
inputStream.Dispose();
3334
}
34-
{% endhighlight %}
35-
{% endtabs %}
35+
```
36+
37+
More information about converting an Excel document to CSV can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-csv/net/excel-to-csv-conversion) section.

Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/README.md renamed to Excel to PDF/Workbook to PDF/.NET/Workbook to PDF/Workbook to PDF/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# How to convert an Excel workbook to PDF?
1+
# Convert an Excel workbook to PDF using C#
2+
3+
The Syncfusion® [.NET Excel Library](https://www.syncfusion.com/document-processing/excel-framework/net/excel-library) (XlsIO) enables you to create, read, and edit Excel documents programmatically without Microsoft Excel or interop dependencies. Using this library, you can **convert an Excel workbook to PDF** using C#.
4+
5+
## Steps to convert an Excel workbook to PDF programmatically
26

37
Step 1: Create a new C# Console Application project.
48

@@ -7,18 +11,15 @@ Step 2: Name the project.
711
Step 3: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as reference to your .NET Standard applications from [NuGet.org](https://www.nuget.org).
812

913
Step 4: Include the following namespaces in the **Program.cs** file.
10-
{% tabs %}
11-
{% highlight c# tabtitle="C#" %}
14+
```csharp
1215
using System.IO;
1316
using Syncfusion.XlsIO;
1417
using Syncfusion.XlsIORenderer;
1518
using Syncfusion.Pdf;
16-
{% endhighlight %}
17-
{% endtabs %}
19+
```
1820

1921
Step 5: Include the below code snippet in **Program.cs** to convert an Excel workbook to PDF.
20-
{% tabs %}
21-
{% highlight c# tabtitle="C#" %}
22+
```csharp
2223
using (ExcelEngine excelEngine = new ExcelEngine())
2324
{
2425
IApplication application = excelEngine.Excel;
@@ -42,5 +43,6 @@ using (ExcelEngine excelEngine = new ExcelEngine())
4243
outputStream.Dispose();
4344
inputStream.Dispose();
4445
}
45-
{% endhighlight %}
46-
{% endtabs %}
46+
```
47+
48+
More information about converting an Excel workbook to PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-pdf/net/excel-to-pdf-conversion#workbook-to-pdf) section.

0 commit comments

Comments
 (0)