IViewManagerShowExtendedKeyboardDialog Method |
Shows "Keyboard" dialog.
Namespace: Resto.Front.Api.UIAssembly: Resto.Front.Api.V10 (in Resto.Front.Api.V10.dll)
SyntaxIInputDialogResult ShowExtendedKeyboardDialog(
string title,
string initialText = "",
bool isMultiline = true,
int maxLength = 2147483647,
bool capitalize = false,
bool isPassword = false,
bool enableCardSlider = false,
bool enableBarcode = false,
string okBtnText = null,
string cancelBtnText = null
)
Parameters
- title String
- Dialog title.
- initialText String (Optional)
- Initial text.
- isMultiline Boolean (Optional)
- Is multiline input supported.
- maxLength Int32 (Optional)
- Max input length.
- capitalize Boolean (Optional)
- Automatic words capitalization.
- isPassword Boolean (Optional)
- Input is password.
- enableCardSlider Boolean (Optional)
- Enable Card slider input.
- enableBarcode Boolean (Optional)
- Enable Barcode input.
- okBtnText String (Optional)
- Ok button text.
- cancelBtnText String (Optional)
- Cancel button text.
Return Value
IInputDialogResultDialog result. Depending on arguments and user input it could be
CardInputDialogResult,
StringInputDialogResult or
BarcodeInputDialogResult.
See Also