Enum PdfFormFieldFlags
Specifies the flags that define the behavior and appearance of a form field in a PDF document.
[Flags]
public enum PdfFormFieldFlags
Fields
Comb = 16777216
Combo = 131072
CommitOnSelChange = 134217728
DoNotScroll = 8388608
DoNotSpellCheck = 4194304
Edit = 262144
FileSelect = 1048576
MultiSelect = 2097152
Multiline = 4096
NoExport = 4
NoToggleToOff = 16384
Password = 8192
PushButton = 65536
Radio = 32768
RadiosInUnison = 67108864
ReadOnly = 1
Required = 2
RichText = 33554432
Sort = 524288
Remarks
This enumeration is decorated with the FlagsAttribute, allowing a combination of values to be specified using a bitwise OR operation. Each flag represents a specific characteristic or functionality of a form field, such as whether it is read-only, required, or supports multiline input.