public static interface

FormListeners.OnTextFormFieldUpdatedListener

com.pspdfkit.forms.FormListeners.OnTextFormFieldUpdatedListener

Class Overview

Listener for TextFormField updates.

Summary

Public Methods
abstract void onMaxLengthChanged(TextFormField formField, TextFormElement formElement, int maxLength)
Called when maximum length of the form field has changed.
abstract void onRichTextChanged(TextFormField formField, TextFormElement formElement, String richText)
Called when rich text changed in text form field
abstract void onTextChanged(TextFormField formField, TextFormElement formElement, String text)
Called when text changed in text form field.

Public Methods

public abstract void onMaxLengthChanged (TextFormField formField, TextFormElement formElement, int maxLength)

Called when maximum length of the form field has changed.

Parameters
formField Form field for which the max length has changed.
formElement Form element for which the max length has changed.
maxLength Changed max length.

public abstract void onRichTextChanged (TextFormField formField, TextFormElement formElement, String richText)

Called when rich text changed in text form field

Parameters
formField Updated form field.
formElement Form element that has changed.
richText Changed rich text.

public abstract void onTextChanged (TextFormField formField, TextFormElement formElement, String text)

Called when text changed in text form field.

Parameters
formField Updated form field.
formElement Form element that has changed.
text Changed text.