scale_crop property

BuiltInDocumentProperties.scale_crop property

Indicates whether document thumbnail is cropped or scaled to fit the display.

@property
def scale_crop(self) -> bool:
    ...

Remarks

Aspose.Words does not update this property.

Examples

Shows how to get extended properties.

doc = aw.Document(file_name=MY_DIR + 'Extended properties.docx')
self.assertTrue(doc.built_in_document_properties.scale_crop)
self.assertTrue(doc.built_in_document_properties.shared_document)
self.assertTrue(doc.built_in_document_properties.hyperlinks_changed)

See Also