Table of Contents

Enum PdfFormFieldKind

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

The kind of an interactive form field, as reported by GetFields(string, CancellationToken).

public enum PdfFormFieldKind

Fields

Unknown = 0

The field kind could not be determined.

PushButton = 1

A push button. Push buttons carry no value and cannot be filled.

Checkbox = 2

A checkbox toggling between a checked state and "Off".

RadioButton = 3

One button of a radio group. Buttons of the same group share the field name and are told apart by their export values.

ComboBox = 4

A combo box. An editable combo box accepts free text; a non-editable one accepts only one of its options.

ListBox = 5

A list box offering a fixed set of options, optionally multi-select.

Text = 6

A text field accepting free text.

Signature = 7

A digital signature field. Signature fields cannot be filled.

Share