Click or drag to resize

IViewManagerShowExtendedInputDialog Method

Shows extended input dialog.

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

Parameters

title
Type: SystemString
Dialog title.
hint
Type: SystemString
Hint to show to the user.
settings
Type: Resto.Front.Api.UIExtendedInputDialogSettings
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 (Optional)
Type: SystemString
Ok button text.
cancelBtnText (Optional)
Type: SystemString
Cancel button text.

Return Value

Type: 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