Click or drag to resize

IViewManagerShowExtendedKeyboardDialog Method

Shows "Keyboard" dialog.

Namespace:  Resto.Front.Api.UI
Assembly:  Resto.Front.Api.V7 (in Resto.Front.Api.V7.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
)

Parameters

title
Type: SystemString
Dialog title.
initialText (Optional)
Type: SystemString
Initial text.
isMultiline (Optional)
Type: SystemBoolean
Is multiline input supported.
maxLength (Optional)
Type: SystemInt32
Max input length.
capitalize (Optional)
Type: SystemBoolean
Automatic words capitalization.
isPassword (Optional)
Type: SystemBoolean
Input is password.
enableCardSlider (Optional)
Type: SystemBoolean
Enable Card slider input.
enableBarcode (Optional)
Type: SystemBoolean
Enable Barcode input.

Return Value

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