[]
Base class for ActionSubmitForm and ActionResetForm, which operates over set of specified fields.
public abstract class ActionFieldsBase : ActionBase, IPdfDict
Gets or sets a value indicating whether the fields specified by the Fields list should be excluded for processing. By default this property is false, which means that the fields in the list are processed. If this property is set to true, the fields in the list are excluded from processing.
public bool ExcludeSpecifiedFields { get; set; }
Gets the list of fields that should be processed or excluded from processing (depending on the value of ExcludeSpecifiedFields) by this action. An item in this list can be either a field's name specified as a PdfString, or the Field object itself. An empty list means that all fields are included.
public IList<ActionFieldsBase.IFieldDef> Fields { get; }