Aspose::Words::Properties::BuiltInDocumentProperties::get_ScaleCrop method

BuiltInDocumentProperties::get_ScaleCrop method

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

bool Aspose::Words::Properties::BuiltInDocumentProperties::get_ScaleCrop()

Remarks

Aspose.Words does not update this property.

Examples

Shows how to get extended properties.

auto doc = System::MakeObject<Aspose::Words::Document>(get_MyDir() + u"Extended properties.docx");
ASSERT_TRUE(doc->get_BuiltInDocumentProperties()->get_ScaleCrop());
ASSERT_TRUE(doc->get_BuiltInDocumentProperties()->get_SharedDocument());
ASSERT_TRUE(doc->get_BuiltInDocumentProperties()->get_HyperlinksChanged());

See Also