Fields Property (PDFSubmitFormAction)
Gets or sets the list of fields affected by this action.
Syntax
'Declaration Public Property Fields As List(Of String)
'Usage Dim instance As PDFSubmitFormAction Dim value As List(Of String) instance.Fields = value value = instance.Fields
public List<string> Fields {get; set;}
Property Value
A System.Collections.Specialized.StringCollection object specifying the list of fields affected by this action.Remarks
The SubmitFields property controls how the fields in this collection are submitted to the specified URL.
If SubmitFields property is true, only the fields in this collection will be submitted.
If SubmitFields property is false, the fields in this collection will not be submitted and only the remaining form fields will be submitted.
If the collection is null or empty, then all the form fields are submitted and the SubmitFields property is ignored.
In any of the situations above, the fields with PDFField.NoExport property set to true will not be submitted.
If SubmitFields property is true, only the fields in this collection will be submitted.
If SubmitFields property is false, the fields in this collection will not be submitted and only the remaining form fields will be submitted.
If the collection is null or empty, then all the form fields are submitted and the SubmitFields property is ignored.
In any of the situations above, the fields with PDFField.NoExport property set to true will not be submitted.
Requirements
Target Platforms: Windows 7, Windows 10, Windows 11, Windows Server 2022, Windows Server 2025
See Also