Aspose::Cells::WorksheetCollection::GetCustomDocumentProperties method

WorksheetCollection::GetCustomDocumentProperties method

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

CustomDocumentPropertyCollection Aspose::Cells::WorksheetCollection::GetCustomDocumentProperties()

Examples

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

See Also