diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html index 95efdb7e4..1d1c8a4ec 100644 --- a/Document-Processing-toc.html +++ b/Document-Processing-toc.html @@ -5893,6 +5893,9 @@
  • Does XlsIO support setting row height for individual cells in Excel?
  • +
  • + How to access the built-in properties of Excel documents? +
  • diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-access-the-built-in-properties-of-Excel-documents.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-access-the-built-in-properties-of-Excel-documents.md new file mode 100644 index 000000000..9ce1617e9 --- /dev/null +++ b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-access-the-built-in-properties-of-Excel-documents.md @@ -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) \ No newline at end of file