Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns formatter user input based on the passed in attribute type. If type is not recognized, returns the input itself.
Syntax
context.formatting.formatUserInput(input, controlAttributes);
Available for
Model-driven and canvas apps
Parameters
Parameter Name | Type | Required | Description |
---|---|---|---|
input | unknown |
Yes | User input. |
behavior | ControlAttributes |
Yes | controlAttributes used by the formatter. |
Return Value
Type: string
Example
const controlAttributes = {
Type: "double",
Precision: 2,
PrecisionSource: 0,
Behavior: null,
OptionSet: null,
Format: null,
} as ControlAttributes;
context.formatter.formatUserInput("22", controlAttributes);
Related articles
Formatting
Power Apps component framework API reference
Power Apps component framework overview