Click or drag to resize

IViewManagerShowKeyboard Method

Shows "Keyboard" dialog.

Namespace:  Resto.Front.Api.UI
Assembly:  Resto.Front.Api.V8 (in Resto.Front.Api.V8.dll)
Syntax
C#
string ShowKeyboard(
	string title,
	string initialText = "",
	bool isMultiline = true,
	int maxLength = 2147483647,
	bool capitalize = false,
	bool isPassword = false,
	string okBtnText = null,
	string cancelBtnText = null
)

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.
okBtnText (Optional)
Type: SystemString
Ok button text.
cancelBtnText (Optional)
Type: SystemString
Cancel button text.

Return Value

Type: String
Entered string or null if cancelled.
See Also