hyperlinksChanged property
BuiltInDocumentProperties.hyperlinksChanged property
Indicates whether hyperlinks in a document were changed.
get hyperlinksChanged(): 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
- module Aspose.Words.Properties
- class BuiltInDocumentProperties