Click or drag to resize

IViewManagerShowExtendedKeyboardDialog Method

Shows "Keyboard" dialog.

Namespace: Resto.Front.Api.UI
Assembly: Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
IInputDialogResult 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

IInputDialogResult
Dialog result. Depending on arguments and user input it could be CardInputDialogResult, StringInputDialogResult or BarcodeInputDialogResult.
See Also