ScaleCrop

BuiltInDocumentProperties.ScaleCrop property

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

public bool ScaleCrop { get; }

Remarks

Aspose.Words does not update this property.

Examples

Shows how to get extended properties.

Document doc = new Document(MyDir + "Extended properties.docx");
Assert.IsTrue(doc.BuiltInDocumentProperties.ScaleCrop);
Assert.IsTrue(doc.BuiltInDocumentProperties.SharedDocument);
Assert.IsTrue(doc.BuiltInDocumentProperties.HyperlinksChanged);

See Also