hyperlinks_changed property

Indicates whether hyperlinks in a document were changed.

@property
def hyperlinks_changed(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