Class PdfFormFillRequest
Describes what to write into a PDF's interactive form: the field values to set and whether the filled result is flattened.
public sealed class PdfFormFillRequest
- Inheritance
-
PdfFormFillRequest
- Inherited Members
Examples
using LMKit.Document.Pdf;
var request = new PdfFormFillRequest();
request.Values.Add(new PdfFormFieldValue("full_name", "Marion Delacroix"));
request.Values.Add(new PdfFormFieldValue("subscribe", "true"));
PdfFormFillResult result = PdfForm.Fill("form.pdf", request);
Properties
- Flatten
Gets or sets whether the filled result is flattened. When
true, the values become static page content and the fields stop being editable. Default isfalse.
- Values
Gets the values to write, applied in list order.