Represents Pdf form's submit action.

Namespace: Spire.Pdf.Actions
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public class PdfSubmitAction : PdfFormAction
Public Class PdfSubmitAction
	Inherits PdfFormAction
public ref class PdfSubmitAction : public PdfFormAction
type PdfSubmitAction =  
    class
        inherit PdfFormAction
    end

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
PdfSubmitAction(String)
Initializes a new instance of the class.
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.
DataFormat
Gets or sets the submit data format.
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, the property is a file name containing an embedded file stream representing the PDF file from which the FDF is being submitted.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
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 the property is set to true.
Fields
Gets the fields.
(Inherited from PdfFormAction.)
Finalize()()()()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
HttpMethod
Gets or sets the HTTP method.
Include
Gets or sets a value indicating whether fields contained in Fields collection will be included for submitting.
(Overrides PdfFormAction..::..Include.)
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.
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.
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.
Initialize()()()() (Overrides PdfAction..::..Initialize()()()().)
MemberwiseClone()()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
NextAction
Gets or sets the next action to be performed after the action represented by this instance.
(Inherited from PdfAction.)
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.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
Url

Remarks

This type of action allows a user to go to a resource on the Internet, tipically a hypertext link.

Inheritance Hierarchy

System..::..Object
  Spire.Pdf.Actions..::..PdfAction
    Spire.Pdf.Actions..::..PdfFormAction
      Spire.Pdf.Actions..::..PdfSubmitAction

See Also