custom_document_properties property

custom_document_properties property

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

Example

from aspose.cells import Workbook

excel = Workbook()
excel.custom_document_properties.add("Checked by", "Jane")

Definition:

@property
def custom_document_properties(self):
    ...

See Also