Adding Custom Properties Visible Inside Document Information Panel with Go via C++

Adding Custom Properties Visible Inside Document Information Panel

Aspose.Cells can be used to add custom properties to the workbook object, which are visible inside the Document Information Panel. You can open the Document Information Panel in Microsoft Excel using File > Info > Properties > Show Document Panel menu commands.

Please use the Workbook.ContentTypeProperties.Add() method to add a custom property, which will be visible in the Document Information Panel.

The following sample code adds two custom properties. The first property is without a type, and the second property has a DateTime type. Once you open the output Excel file generated by this code, you will see these two properties inside the Document Information Panel.

Related Article