Method ImportFdf
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
ImportFdf(string)
Takes the values from the FDF document and imports them into this PdfDocument.
public void ImportFdf(string fileName)
Parameters
fileName
stringThe path to FDF document.
Remarks
You can use this method to auto populate PDF form from database or another source.
ImportFdf(Stream)
Takes the values from the FDF document and import them into this PdfDocument.
public void ImportFdf(Stream stream)
Parameters
stream
StreamThe stream to read FDF data from.
Remarks
You can use this method to auto populate PDF form from database or another source.
ImportFdf(byte[])
Takes the values from the FDF document and imports them into this PdfDocument.
public void ImportFdf(byte[] buffer)
Parameters
buffer
byte[]The buffer to read FDF data from.
Remarks
You can use this method to auto populate PDF form from database or another source.