Content Copying for Accessability: Allowed

Hello,

I am setting the following security options in code:

pdf.Security.IsAnnotationsModifyingAllowed = false;
pdf.Security.IsContentsModifyingAllowed = false;
pdf.Security.IsCopyingAllowed = false;
pdf.Security.IsDegradedPrintingAllowed = false;
pdf.Security.IsPrintingAllowed = true;
pdf.Security.IsDocumentAssemblyingAllowed = false;
pdf.Security.IsScreenReadersAllowed = true;
pdf.Security.IsFormFillingAllowed = false;
pdf.Security.MasterPassword = "master";
pdf.Security.Is128BitsEncrypted = false;

when I look at the generated document properties it looks like the attached image.

What I want is to have the setting "Content Copying for Accessability: Allowed"

How can acheive this

regards

Andrew

Hi,

Thank you for considering Aspose.

I found it can be supported by the following code:
pdf.Security.IsDefaultAllAllowed = false;
pdf.Security.IsPrintingAllowed = true;
pdf.Security.IsScreenReadersAllowed = true;