 | SubmitFormFlags Enumeration |
Namespace:
Patagames.Pdf.Enums
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
Syntax[FlagsAttribute]
public enum SubmitFormFlags
<FlagsAttribute>
Public Enumeration SubmitFormFlags
[FlagsAttribute]
public enum class SubmitFormFlags
[<FlagsAttribute>]
type SubmitFormFlags
/** @attribute FlagsAttribute */
public enum SubmitFormFlags
Patagames.Pdf.Enums.SubmitFormFlags = function();
Patagames.Pdf.Enums.SubmitFormFlags.createEnum('Patagames.Pdf.Enums.SubmitFormFlags', true);
Members
| Member name | Value | Description |
---|
| None | 0 |
No any flags are setted.
|
| IncludeExclude | 1 |
If clear, the Fields property specifies which fields to
include in the submission. (All descendants of the specified fields in the field hierarchy are submitted as well.)
If set, the Fields property tells which fields to exclude.
All fields in the document’s interactive form are submitted except those listed in the
Fields property and those whose NoExport flag is set.
|
| IncludeNoValueFields | 2 |
If set, all fields designated by the Fields array and the IncludeExclude flag are submitted,
regardless of whether they have a value. For fields without a value, only the field name is transmitted.
If clear, fields without a value are not submitted.
|
| ExportFormat | 4 |
Meaningful only if the SubmitPDF and XFDF flags are clear.
If set, field names and values are submitted in HTML Form format.
If clear, they are submitted in Forms Data Format (FDF).
|
| GetMethod | 8 |
If set, field names and values are submitted using an HTTP GET request.
If clear, they are submitted using a POST request.
This flag is meaningful only when the ExportFormat flag is set; if ExportFormat is clear,
this flag must also be clear.
|
| SubmitCoordinates | 16 |
If set, the coordinates of the mouse click that caused the submitform action are transmitted as part of the form data.
The coordinate values are relative to the upper-left corner of the field’s widget annotation rectangle.
They are represented in the data in the format name.x = xval&name.y = yval where name is the field’s mapping name
(TM in the field dictionary) if present; otherwise, name is the field name. If the value of the TM entry is a
single space character, both the name and the dot following it are suppressed, resulting in the format x = xval&y = yval
This flag is meaningful only when the ExportFormat flag is set. If ExportFormat is clear,
this flag must also be clear.
|
| XFDF | 32 |
Meaningful only if the SubmitPDF flags are clear. If set, field names and values are submitted as XFDF.
|
| IncludeAppendSaves | 64 |
Meaningful only when the form is being submitted in Forms Data Format (that is, when both the XFDF
and ExportFormat flags are clear). If set, the submitted FDF file includes the contents of all incremental
updates to the underlying PDF document, as contained in the Differences entry in the FDF dictionary.
If clear, the incremental updates are not included.
|
| IncludeAnnotations | 128 |
Meaningful only when the form is being submitted in Forms Data Format (that is, when both the XFDF
and ExportFormat flags are clear). If set, the submitted FDF file includes all markup annotations
in the underlying PDF document.
If clear, markup annotations are not included.
|
| SubmitPDF | 256 |
If set, the document is submitted as PDF, using the MIME content type application/pdf.
If set, other flags are ignored except GetMethod.
|
| CanonicalFormat | 512 |
If set, any submitted field values representing dates are converted to the standard format.
|
| ExclNonUserAnnots | 1024 |
Meaningful only when the form is being submitted in Forms Data Format (that is, when both the XFDF
and ExportFormat flags are clear) and the IncludeAnnotations flag is set.
If set, it includes only those markup annotations whose Text property matches the
name of the current user, as determined by the remote server to which the form is being submitted.
This allows multiple users to collaborate in annotating a single remote PDF document without affecting one another’s annotations.
|
| ExclFKey | 2048 |
Meaningful only when the form is being submitted in Forms Data Format (that is, when both the XFDF
and ExportFormat flags are clear).
If set, the submitted FDF excludes the F entry
|
| EmbedForm | 4096 |
Meaningful only when the form is being submitted in Forms Data Format (that is, when both the XFDF
and ExportFormat flags are clear).
If set, the F entry of the submitted FDF is a file specification containing an embedded file stream representing the
PDF file from which the FDF is being submitted.
|
See Also