Interface IFormValuePostProcessorParams
public interface IFormValuePostProcessorParams
Parameters provided to a
form value post processor when processing form field values.- Since:
- 8.4.1
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionThe name of the form field for which the values are provided.The content of the placeholder, e.g. for[%myField%]this would bemyField.The placeholder parameters as provided by the replacer engine.values()Gets the resolved form values.
-
Method Details
-
values
-
fieldName
String fieldName()The name of the form field for which the values are provided. When the name was an alias, this is the name corresponding to the form field with that alias.- Returns:
- The name of the form field.
-
placeholderContent
String placeholderContent()The content of the placeholder, e.g. for[%myField%]this would bemyField.- Returns:
- The content of the placeholder.
-
replaceParameters
IFormReplacerParams replaceParameters()The placeholder parameters as provided by the replacer engine.- Returns:
- The placeholder parameters.
-