scaleCrop property

BuiltInDocumentProperties.scaleCrop property

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

get scaleCrop(): boolean

Remarks

Aspose.Words does not update this property.

Examples

Shows how to get extended properties.

let doc = new aw.Document(base.myDir + "Extended properties.docx");
expect(doc.builtInDocumentProperties.scaleCrop).toEqual(true);
expect(doc.builtInDocumentProperties.sharedDocument).toEqual(true);
expect(doc.builtInDocumentProperties.hyperlinksChanged).toEqual(true);

See Also