Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Document-Processing-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -5893,6 +5893,9 @@
<li>
<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>
</li>
<li>
<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>
</li>
</ul>
</li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: How to access the built-in properties of Excel documents | Syncfusion
description: This page shows how to access the built-in properties of Excel documents using Syncfusion .NET Excel library (XlsIO).
platform: document-processing
control: XlsIO
documentation: UG
---

# How to access the built-in properties of Excel documents?

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.

{% tabs %}
{% highlight c# tabtitle="C# [Cross-platform]" %}
IBuiltInDocumentProperties documentProperties = workbook.BuiltInDocumentProperties;
{% endhighlight %}

{% highlight c# tabtitle="C# [Windows-specific]" %}
IBuiltInDocumentProperties documentProperties = workbook.BuiltInDocumentProperties;
{% endhighlight %}

{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
Dim documentProperties As IBuiltInDocumentProperties = workbook.BuiltInDocumentProperties
{% endhighlight %}
{% endtabs %}

## See Also

* [How to disable ExportDocumentProperties](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-pdf/net/excel-to-pdf-converter-settings#export-document-properties)