Skip to content

Commit 00b1073

Browse files
author
GowthamPonrajSF5414
committed
Merge branch 'hotfix/hotfix-v32.2.3' of https://github.com/syncfusion-content/document-processing-docs into 999649-TableNameFAQ
# Conflicts: # Document-Processing-toc.html
2 parents 854860c + 94bdd9b commit 00b1073

3 files changed

Lines changed: 34 additions & 2 deletions

File tree

Document-Processing-toc.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6467,6 +6467,9 @@
64676467
<li>
64686468
<a href="/document-processing/excel/excel-library/net/faqs/how-to-get-the-maximum-supported-rows-and-columns-in-an-excel-worksheet">How to get the maximum rows and columns in a worksheet using XlsIO?</a>
64696469
</li>
6470+
<li>
6471+
<a href="/document-processing/excel/excel-library/net/faqs/how-to-clear-formats-in-worksheet">How to clear formats in a worksheet using XlsIO?</a>
6472+
</li>
64706473
<li>
64716474
<a href="/document-processing/excel/excel-library/net/faqs/how-to-get-external-connection-name-and-change-table-name">How to get the external connection name from a QueryTable in an IListObject and how to change the table name using XlsIO?</a>
64726475
</li>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: How to clear formats in a worksheet | XlsIO | Syncfusion
3+
description: This page explains about how to clear all the formats in a worksheet using Syncfusion .NET Excel library (XlsIO).
4+
platform: document-processing
5+
control: XlsIO
6+
documentation: UG
7+
---
8+
9+
# How to clear formats in a worksheet using XlsIO?
10+
11+
You can clear all formats in an Excel worksheet by using the ClearFormat option of the [ExcelClearOptions](https://help.syncfusion.com/cr/document-processing/syncfusion.xlsio.excelclearoptions.html) enum on an [IRange](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IRange.html) object.
12+
13+
{% tabs %}
14+
{% highlight c# tabtitle="C# [Cross-platform]" %}
15+
// Clear formats in the worksheet
16+
worksheet.UsedRange.Clear(ExcelClearOptions.ClearFormat);
17+
{% endhighlight %}
18+
19+
{% highlight c# tabtitle="C# [Windows-specific]" %}
20+
// Clear formats in the worksheet
21+
worksheet.UsedRange.Clear(ExcelClearOptions.ClearFormat);
22+
{% endhighlight %}
23+
24+
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
25+
' Clear formats in the worksheet
26+
worksheet.UsedRange.Clear(ExcelClearOptions.ClearFormat)
27+
{% endhighlight %}
28+
{% endtabs %}
29+

Document-Processing/Excel/Excel-Library/NET/faqs/how-to-get-external-connection-name-and-change-table-name.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: How to access external connection name and change table name | Syncfusion
2+
title: How to get external connection name and rename the table | Syncfusion
33
description: This page shows how to access a QueryTable's external connection name and how to change a table name using Syncfusion .NET Excel library (XlsIO).
44
platform: document-processing
55
control: XlsIO
66
documentation: UG
77
---
88

9-
# How to get the external connection name from a QueryTable in an IListObject and how to change the table name using XlsIO?
9+
# How to access the external connection name and rename the table name?
1010

1111
The example below shows how to read the external connection name from a [QueryTable](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.Implementation.QueryTableImpl.html#Syncfusion_XlsIO_Implementation_QueryTableImpl_ExternalConnection) on a [ListObject](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IListObjects.html) (table) and how to rename the table using Syncfusion XlsIO. Ensure the worksheet contains a ListObject with an associated QueryTable.
1212

0 commit comments

Comments
 (0)