FormFieldActions Class
Stores JavaScript actions for a PDF form field.
Declaration
public class FormFieldActions extends JavaObject
Inherited Members
Inheritance
FormFieldActions()
Initializes a new instance of the FormFieldActions class.
Declaration
public FormFieldActions()
Methods
getCharacterChanged() Method
Returns a JavaScript action that runs when a character is entered.
Declaration
public JavaScriptAction getCharacterChanged()
Returns
| Type | Description |
|---|---|
| JavaScriptAction | The JavaScript action that runs when a character is entered. |
getFieldFormatting() Method
Returns a JavaScript action that formats the field value.
Declaration
public JavaScriptAction getFieldFormatting()
Returns
| Type | Description |
|---|---|
| JavaScriptAction | The JavaScript action that formats the field value. |
getFieldValueChanged() Method
Returns a JavaScript action that runs when the field value changes.
Declaration
public JavaScriptAction getFieldValueChanged()
Returns
| Type | Description |
|---|---|
| JavaScriptAction | The JavaScript action that runs when the field value changes. |
getFieldValueRecalculating() Method
Returns a JavaScript action that recalculates the field value.
Declaration
public JavaScriptAction getFieldValueRecalculating()
Returns
| Type | Description |
|---|---|
| JavaScriptAction | The JavaScript action that recalculates the field value. |
setCharacterChanged(JavaScriptAction value) Method
Sets a JavaScript action that runs when a character is entered.
Declaration
public void setCharacterChanged(JavaScriptAction value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | JavaScriptAction | The JavaScript action that runs when a character is entered. |
setFieldFormatting(JavaScriptAction value) Method
Sets a JavaScript action that formats the field value.
Declaration
public void setFieldFormatting(JavaScriptAction value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | JavaScriptAction | The JavaScript action that formats the field value. |
setFieldValueChanged(JavaScriptAction value) Method
Sets a JavaScript action that runs when the field value changes.
Declaration
public void setFieldValueChanged(JavaScriptAction value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | JavaScriptAction | The JavaScript action that runs when the field value changes. |
setFieldValueRecalculating(JavaScriptAction value) Method
Sets a JavaScript action that recalculates the field value.
Declaration
public void setFieldValueRecalculating(JavaScriptAction value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | JavaScriptAction | The JavaScript action that recalculates the field value. |