Skip to content

Commit 8d208c1

Browse files
988140-Document-Property
1 parent 145a0ac commit 8d208c1

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
@@ -5893,6 +5893,9 @@
58935893
<li>
58945894
<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>
58955895
</li>
5896+
<li>
5897+
<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>
5898+
</li>
58965899
</ul>
58975900
</li>
58985901
</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 | XlsIO | 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?cs-save-lang=1&cs-lang=vb#export-document-properties)

0 commit comments

Comments
 (0)