Skip to content

Commit 33aeeda

Browse files
authored
Merge pull request #1728 from syncfusion-content/988140-Document-Property
988140-How to access the built-in properties of Excel documents.
2 parents 237b5fa + 261279e commit 33aeeda

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

Document-Processing-toc.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5903,6 +5903,9 @@
59035903
<li>
59045904
<a href="/document-processing/excel/excel-library/net/faqs/does-xlsio-support-setting-row-height-for-individual-cells-in-Excel">Does XlsIO support setting row height for individual cells in Excel?</a>
59055905
</li>
5906+
<li>
5907+
<a href="/document-processing/excel/excel-library/net/faqs/how-to-access-the-built-in-properties-of-Excel-documents">How to access the built-in properties of Excel documents?</a>
5908+
</li>
59065909
</ul>
59075910
</li>
59085911
</ul>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: How to access the built-in properties of Excel documents | Syncfusion
3+
description: This page shows how to access the built-in properties of Excel documents using Syncfusion .NET Excel library (XlsIO).
4+
platform: document-processing
5+
control: XlsIO
6+
documentation: UG
7+
---
8+
9+
# How to access the built-in properties of Excel documents?
10+
11+
You can access the built-in properties of Excel documents by using the [IWorkbook.BuiltInDocumentProperties](https://help.syncfusion.com/cr/aspnet-core/Syncfusion.XlsIO.Implementation.Collections.BuiltInDocumentProperties.html) property.
12+
13+
{% tabs %}
14+
{% highlight c# tabtitle="C# [Cross-platform]" %}
15+
IBuiltInDocumentProperties documentProperties = workbook.BuiltInDocumentProperties;
16+
{% endhighlight %}
17+
18+
{% highlight c# tabtitle="C# [Windows-specific]" %}
19+
IBuiltInDocumentProperties documentProperties = workbook.BuiltInDocumentProperties;
20+
{% endhighlight %}
21+
22+
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
23+
Dim documentProperties As IBuiltInDocumentProperties = workbook.BuiltInDocumentProperties
24+
{% endhighlight %}
25+
{% endtabs %}
26+
27+
## See Also
28+
29+
* [How to disable ExportDocumentProperties](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-pdf/net/excel-to-pdf-converter-settings#export-document-properties)

0 commit comments

Comments
 (0)