# HtmlFormFormatFlags

## Content

[**DsPdfJS API v9.1.3**](../README)

***

[DsPdfJS API](../globals) / HtmlFormFormatFlags

# Enumeration: HtmlFormFormatFlags

Defines possible values of [ActionSubmitForm#htmlFormFormat](../classes/ActionSubmitForm#htmlformformat) property.

## Enumeration Members

### GetMethod

> **GetMethod**: `8`

Indicates whether field names and values are submitted using an HTTP GET request,
otherwise they are submitted using a POST request.

***

### SubmitCoordinates

> **SubmitCoordinates**: `16`

Indicates whether the coordinates of the mouse click that caused the submit-form
action are transmitted as part of the form data.

The coordinate values are relative to the upper-left corner of the field's rectangle.
They are represented in the data in the format
name.x = xval & name.y = yval
where name is the [Field#mappingName](../classes/Field#mappingname) if present; otherwise, name is the field name.
If the value of the [Field#mappingName](../classes/Field#mappingname) is a single space character,
both the name and the dot following it are suppressed, resulting in the format
x = xval & y = yval
