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
fileNamestringThe 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
streamStreamThe 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
bufferbyte[]The buffer to read FDF data from.
Remarks
You can use this method to auto populate PDF form from database or another source.