Table of Contents

Class PdfFormFillRequest

Namespace
LMKit.Document.Pdf
Assembly
LM-Kit.NET.dll

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 is false.

Values

Gets the values to write, applied in list order.

Share