PdfDocumentAddDocument(Byte, String, Boolean, Boolean, Boolean) Method
Adds a password protected PDF from data to the end of this document and optionally applies the header and footer of this document to added PDF
Namespace: HiQPdfClientAssembly: HiQPdfClient.NetCore (in HiQPdfClient.NetCore.dll) Version: 16.0.0
public void AddDocument(
byte[] pdfData,
string password,
bool applyHeaderAndFooter,
bool applyHeaderInFirstPage,
bool applyFooterInFirstPage
)
Public Sub AddDocument (
pdfData As Byte(),
password As String,
applyHeaderAndFooter As Boolean,
applyHeaderInFirstPage As Boolean,
applyFooterInFirstPage As Boolean
)
public:
void AddDocument(
array<unsigned char>^ pdfData,
String^ password,
bool applyHeaderAndFooter,
bool applyHeaderInFirstPage,
bool applyFooterInFirstPage
)
member AddDocument :
pdfData : byte[] *
password : string *
applyHeaderAndFooter : bool *
applyHeaderInFirstPage : bool *
applyFooterInFirstPage : bool -> unit
Parameters
- pdfData Byte
- The PDF document data
- password String
- The password of added PDF document
- applyHeaderAndFooter Boolean
- Controls is the header and footer of this document are applied to the added document
- applyHeaderInFirstPage Boolean
- Controls if the header is applied in first page of the added document
- applyFooterInFirstPage Boolean
- Controls if the footer is applied in first page of the added document