From bd20808ac4aa6bbe77a470084bd7d861f46cbf94 Mon Sep 17 00:00:00 2001 From: venkateshwaransf5013 Date: Wed, 26 Aug 2026 11:51:23 +0530 Subject: [PATCH] Modified the README.md file --- .../Replace/.NET/Replace/Replace/README.md | 14 ++++++-------- .../Import Data Table/Import Data Table/README.md | 2 -- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/Editing Excel cells/Replace/.NET/Replace/Replace/README.md b/Editing Excel cells/Replace/.NET/Replace/Replace/README.md index 068e9ff3..80ca74bc 100644 --- a/Editing Excel cells/Replace/.NET/Replace/Replace/README.md +++ b/Editing Excel cells/Replace/.NET/Replace/Replace/README.md @@ -7,15 +7,14 @@ Step 2: Name the project. 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). Step 4: Include the following namespaces in the **Program.cs** file. -{% tabs %} -{% highlight c# tabtitle="C#" %} + +```csharp using Syncfusion.XlsIO; -{% endhighlight %} -{% endtabs %} +``` Step 5: Include the below code snippet in **Program.cs** to replace all occurrences of text with different data. -{% tabs %} -{% highlight c# tabtitle="C#" %} + +```csharp using (ExcelEngine excelEngine = new ExcelEngine()) { IApplication application = excelEngine.Excel; @@ -45,5 +44,4 @@ using (ExcelEngine excelEngine = new ExcelEngine()) workbook.SaveAs(stream); stream.Dispose(); } -{% endhighlight %} -{% endtabs %} \ No newline at end of file +``` \ No newline at end of file diff --git a/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/README.md b/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/README.md index 7bc5a0ab..ed029a2b 100644 --- a/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/README.md +++ b/Import Data to Template/Import Data Table/.NET/Import Data Table/Import Data Table/README.md @@ -62,7 +62,5 @@ using (ExcelEngine excelEngine = new ExcelEngine()) inputStream.Dispose(); } ``` -{% endhighlight %} -{% endtabs %} More information about binding data to a template marker can be found in this [documentation](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-template-markers#bind-from-datatable) section. \ No newline at end of file