Specify input flags on the input field.
#include <bps/dialog.h>
BPS_API int dialog_set_prompt_input_flags(dialog_instance_t dialog,
int input_flags) BPS_DEPRECATED
BlackBerry 10.2.0
The dialog to update.
The input flags to apply. Must be a bitwise-OR of the values of the dialog_input_flags_t enumeration, or DIALOG_INPUT_NONE to turn off all input options.
Deprecated:
Use the dialog_set_input_flags() function.
The dialog_set_prompt_input_flags() function specifies the input options to use on input fields for prompt dialogs. By default input is corrected automatically (DIALOG_INPUT_AUTO_CORRECT) and checked for spelling errors (DIALOG_INPUT_SPELL_CHECK). To turn off all input options use DIALOG_INPUT_NONE.
BPS_SUCCESS upon success, BPS_FAILURE with errno set otherwise.