SharedDocument

BuiltInDocumentProperties.SharedDocument property

Indicates whether the document is a shared document.

public bool SharedDocument { 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.That(doc.BuiltInDocumentProperties.ScaleCrop, Is.True);
Assert.That(doc.BuiltInDocumentProperties.SharedDocument, Is.True);
Assert.That(doc.BuiltInDocumentProperties.HyperlinksChanged, Is.True);

See Also