Class OutlineCopyOptions
- java.lang.Object
-
- com.pdftools.toolbox.internal.NativeBase
-
- com.pdftools.toolbox.internal.NativeObject
-
- com.pdftools.toolbox.pdf.navigation.OutlineCopyOptions
-
public class OutlineCopyOptions extends NativeObject
-
-
Constructor Summary
Constructors Constructor Description OutlineCopyOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetCopyLogicalStructure()Copy the logical structure and tagging information.NamedDestinationCopyStrategygetNamedDestinations()Copy strategy for named destinations (Getter)voidsetCopyLogicalStructure(boolean value)Copy the logical structure and tagging information.voidsetNamedDestinations(NamedDestinationCopyStrategy value)Copy strategy for named destinations (Setter)-
Methods inherited from class com.pdftools.toolbox.internal.NativeObject
equals, hashCode
-
-
-
-
Method Detail
-
getCopyLogicalStructure
public boolean getCopyLogicalStructure()
Copy the logical structure and tagging information. (Getter)
Specifies whether the logical structure and tagging information associated with a an outline item is also copied when copying the item.
This is required if the target document conformance is PDF/A Level a.
Default value:
true
-
setCopyLogicalStructure
public void setCopyLogicalStructure(boolean value)
Copy the logical structure and tagging information. (Setter)
Specifies whether the logical structure and tagging information associated with a an outline item is also copied when copying the item.
This is required if the target document conformance is PDF/A Level a.
Default value:
true
-
getNamedDestinations
public NamedDestinationCopyStrategy getNamedDestinations()
Copy strategy for named destinations (Getter)
Specify whether named destinations are resolved when copying an outline item.
Default value:
NamedDestinationCopyStrategy.COPY
-
setNamedDestinations
public void setNamedDestinations(NamedDestinationCopyStrategy value)
Copy strategy for named destinations (Setter)
Specify whether named destinations are resolved when copying an outline item.
Default value:
NamedDestinationCopyStrategy.COPY- Throws:
java.lang.IllegalArgumentException- ifvalueisnull
-
-