IViewManagerShowExtendedInputDialog Method |
Shows extended input dialog.
Namespace: Resto.Front.Api.UIAssembly: Resto.Front.Api.V10 (in Resto.Front.Api.V10.dll)
SyntaxIInputDialogResult 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
IInputDialogResultDialog 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