Enum AcroTextFieldFlags
Flags specifying various characteristics of a text type field in an AcroFieldBase.
[Flags]
public enum AcroTextFieldFlags : uint
Fields
Comb = 16777216
For a text field which is not a Password, Multiline or FileSelect the field text is evenly spaced by splitting into 'combs' based on the MaxLen entry in the field dictionary.
DoNotScroll = 8388608
The field does not scroll if the text exceeds the bounds of the field.
DoNotSpellCheck = 4194304
The text entered is not spell checked.
FileSelect = 1048576
The field represents a file path selection.
Multiline = 4096
The field can contain multiple lines of text.
NoExport = 4
Must not be exported by the submit form action.
Password = 8192
The field is for a password and should not be displayed as text and should not be stored to file.
ReadOnly = 1
The user may not change the value of the field.
Required = 2
The field must have a value before the form can be submitted.
RichText = 33554432
The value of the field is a rich text string.