Aspose::Cells::Workbook::GetCustomDocumentProperties method

Workbook::GetCustomDocumentProperties method

Returns a DocumentProperty collection that represents all the custom document properties of the spreadsheet.

CustomDocumentPropertyCollection Aspose::Cells::Workbook::GetCustomDocumentProperties()

Examples

Aspose::Cells::Startup();
Workbook excel;
excel.GetCustomDocumentProperties().Add(u"Checked by", u"Jane");
Aspose::Cells::Cleanup();

See Also