pdftools_sdk.document_assembly.copy_strategy

Classes

CopyStrategy(value)

class pdftools_sdk.document_assembly.copy_strategy.CopyStrategy(value)[source]

Bases: IntEnum

Variables:
  • COPY (int) – The elements are copied as-is to the output document.

  • FLATTEN (int) – The visual appearance of elements is preserved, but they are not interactive anymore.

  • REMOVE (int) – The elements are removed completely.

COPY = 1
FLATTEN = 2
REMOVE = 3