Click or drag to resize

IViewManagerShowYesNoCancelPopup Method

Shows "Yes"/"No"/"Cancel" dialog.

Namespace:  Resto.Front.Api.UI
Assembly:  Resto.Front.Api.V8 (in Resto.Front.Api.V8.dll)
Syntax
C#
bool? ShowYesNoCancelPopup(
	string title,
	string message,
	string yesBtnText = null,
	string noBtnText = null,
	string cancelBtnText = null
)

Parameters

title
Type: SystemString
Dialog title.
message
Type: SystemString
Message text.
yesBtnText (Optional)
Type: SystemString
Yes button text.
noBtnText (Optional)
Type: SystemString
No button text.
cancelBtnText (Optional)
Type: SystemString
Cancel button text.

Return Value

Type: NullableBoolean
true if "Yes", false if "No", null if "Cancel".
See Also