Click or drag to resize

PdfSubmitAction Class

Represents Pdf form's submit action.
Inheritance Hierarchy
System Object
Spire.Pdf.Actions PdfAction
Spire.Pdf.Actions PdfFormAction
Spire.Pdf.Actions PdfSubmitAction

Namespace: Spire.Pdf.Actions
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public class PdfSubmitAction : PdfFormAction

The PdfSubmitAction type exposes the following members.

Constructors
Name Description
Public method PdfSubmitAction
Initializes a new instance of theclass.
Top
Properties
Name Description
Public property CanonicalDateTimeFormat
If set, any submitted field values representing dates are converted to the standard format. The interpretation of a form field as a date is not specified explicitly in the field itself but only in the JavaScript code that processes it.
Public property DataFormat
Gets or sets the submit data format.
Public property EmbedForm
Gets or sets a value indicating whether to include form to submit data stream. Meaningful only when the form is being submitted in Forms Data Format. If set, theproperty is a file name containing an embedded file stream representing the PDF file from which the FDF is being submitted.
Public property ExcludeNonUserAnnotations
Gets or sets a value indicating whether to exclude non user annotations form submit data stream. Meaningful only when the form is being submitted in Forms Data Format and theproperty is set to true.
Public property Fields
Gets the fields.
(Inherited from PdfFormAction .)
Public property HttpMethod
Gets or sets the HTTP method.
Public property Include
Gets or sets a value indicating whether fields contained in Fields collection will be included for submitting.
(Overrides PdfFormAction Include .)
Public property IncludeAnnotations
Gets or sets a value indicating whether to submit annotations. Meaningful only when the form is being submitted in Forms Data Format. If set, the submitted FDF file includes all markup annotations in the underlying PDF document. If clear, markup annotations are not included.
Public property IncludeIncrementalUpdates
Gets or sets a value indicating whether to submit form's incremental updates. Meaningful only when the form is being submitted in Forms Data Format. If set, the submitted FDF file includes the contents of all incremental updates to the underlying PDF document. If clear, the incremental updates are not included.
Public property IncludeNoValueFields
Gets or sets a value indicating whether to submit fields without value. If set, all fields designated by the Fields collection and the flag are submitted, regardless of whether they have a value. For fields without a value, only the field name is transmitted.
Public property NextAction
Gets or sets the next action to be performed after the action represented by this instance.
(Inherited from PdfAction .)
Public property SubmitCoordinates
Gets or sets a value indicating whether to submit mouse pointer coordinates. If set, the coordinates of the mouse click that caused the submit-form action are transmitted as part of the form data.
Public property Url
Top
Methods
Name Description
Public method Equals
Determines whether the specified object is equal to the current object.
(Inherited from Object .)
Protected method Finalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object .)
Public method GetHashCode
Serves as the default hash function.
(Inherited from Object .)
Public method GetType
Gets the Type of the current instance.
(Inherited from Object .)
Protected method Initialize (Overrides PdfAction Initialize .)
Protected method MemberwiseClone
Creates a shallow copy of the current Object .
(Inherited from Object .)
Public method ToString
Returns a string that represents the current object.
(Inherited from Object .)
Top
Remarks
This type of action allows a user to go to a resource on the Internet, tipically a hypertext link.
See Also