Table of Contents

Class PdfFormFieldValue

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

One value to write into a form field, addressed by the field's exact name as reported by GetFields(string, CancellationToken).

public sealed class PdfFormFieldValue
Inheritance
PdfFormFieldValue
Inherited Members

Remarks

The interpretation of Value depends on the field kind:

  • Text and editable combo box: the literal text to write.
  • Checkbox and radio button: "true", "yes", "on", "1" (case-insensitive) or the widget's export value mean checked; "false", "no", "off", "0" or an empty string mean unchecked. For a radio group, pass the export value of the button to select.
  • List box and non-editable combo box: the option label or export value to select. For a multi-select list box, separate the values with '\n'.

Constructors

PdfFormFieldValue(string, string)

Initializes a field value.

Properties

Name

Gets the exact name of the field to write.

Value

Gets the value to write; see the class remarks for the per-kind semantics.

Share