Click or drag to resize

IViewManagerShowExtendedInputDialog Method

Shows extended input dialog.

Namespace: Resto.Front.Api.UI
Assembly: Resto.Front.Api.V10 (in Resto.Front.Api.V10.dll)
Syntax
C#
IInputDialogResult ShowExtendedInputDialog(
	string title,
	string hint,
	ExtendedInputDialogSettings settings,
	string okBtnText = null,
	string cancelBtnText = null
)

Parameters

title  String
Dialog title.
hint  String
Hint to show to the user.
settings  ExtendedInputDialogSettings
Expected input types settings. Dialog will contain separate tab for each enabled input type, so you should provide tab titles for enabled input types.
okBtnText  String  (Optional)
Ok button text.
cancelBtnText  String  (Optional)
Cancel button text.

Return Value

IInputDialogResult
Dialog result. Depending on settings and user input it could be one of IInputDialogResult inheritors. Use pattern matching to find out specific result type.
See Also