Package com.winnovative_software
Class PdfSubmitFormAction
java.lang.Object
com.winnovative_software.PdfAction
com.winnovative_software.PdfSubmitFormAction
Represents a Submit action in a PDF form
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfields()
Gets the list of fields to be included or excluded from submit based onincludeFields()
property value.int
flags()
Gets a bitwise OR of flags fromPdfFormSubmitFlags
specifying various characteristics of the actionboolean
Gets the flag indicating if the Fields property defines the fields to be included or the fields to be excluded from submitvoid
setFields
(PdfFormField[] fields) Sets the list of fields to be included or excluded from submit based onincludeFields()
property value.void
setFlags
(int flags) Sets a bitwise OR of flags fromPdfFormSubmitFlags
specifying various characteristics of the actionvoid
setIncludeFields
(boolean includeFields) Sets the flag indicating if the Fields property defines the fields to be included or the fields to be excluded from submit.void
Sets the URL of the script at the Web server that will process the submissionurl()
Gets the URL of the script at the Web server that will process the submission
-
Constructor Details
-
PdfSubmitFormAction
Creates a PDF form submit action- Parameters:
url
- the URL of the script at the Web server that will process the submission
-
-
Method Details
-
url
Gets the URL of the script at the Web server that will process the submission- Returns:
- the URL of the script at the Web server that will process the submission
-
setUrl
Sets the URL of the script at the Web server that will process the submission- Parameters:
url
- the URL to set
-
flags
public int flags()Gets a bitwise OR of flags fromPdfFormSubmitFlags
specifying various characteristics of the action- Returns:
- the current flags
-
setFlags
public void setFlags(int flags) Sets a bitwise OR of flags fromPdfFormSubmitFlags
specifying various characteristics of the action- Parameters:
flags
- the flags to set
-
includeFields
public boolean includeFields()Gets the flag indicating if the Fields property defines the fields to be included or the fields to be excluded from submit- Returns:
- the flag value
-
setIncludeFields
public void setIncludeFields(boolean includeFields) Sets the flag indicating if the Fields property defines the fields to be included or the fields to be excluded from submit. By default this property is true and the Fields property defines the list of fields to to be included in submit- Parameters:
includeFields
- the flag value to set
-
fields
Gets the list of fields to be included or excluded from submit based onincludeFields()
property value. If no fields are added to this array andincludeFields()
property is true then all the fields are submitted- Returns:
- the list of fields
-
setFields
Sets the list of fields to be included or excluded from submit based onincludeFields()
property value. If no fields are added to this array andincludeFields()
property is true then all the fields are submitted- Parameters:
fields
- the list of fields to set
-