disable_copy_protection property

disable_copy_protection property

Turns off content copy protection when rendering to HTML.

Remarks

When rendering PDF files with protection against copying text and images to HTML, GroupDocs.Viewer adds an ‘inert’ HTML attribute to the HTML BODY tag. The default value of this option is false, indicating that the ‘intent’ HTML attribute is added only if the PDF document is protected.

For code example, see the documentation.

Definition:

@property
def disable_copy_protection(self):
    ...
@disable_copy_protection.setter
def disable_copy_protection(self, value):
    ...

See Also