sharedDocument property

BuiltInDocumentProperties.sharedDocument property

Indicates whether the document is a shared document.

get sharedDocument(): 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