PdfContentEditor.RemoveDocumentOpenAction

PdfContentEditor.RemoveDocumentOpenAction method

Removes open action from the document. This operation is useful when concatenating multiple documents that use explicit ‘GoTo’ action on startup.

public void RemoveDocumentOpenAction()

Examples

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.RemoveDocumentOpenAction();
editor.Save("example_out.pdf");

See Also