kvision / pl.treksoft.kvision.modal / Confirm / <init>

<init>

Confirm(caption: String? = null, text: String? = null, rich: Boolean = false, align: Align? = null, size: ModalSize? = null, animation: Boolean = true, cancelVisible: Boolean = false, yesTitle: String = "Yes", noTitle: String = "No", cancelTitle: String = "Cancel", noCallback: (() -> Unit)? = null, yesCallback: (() -> Unit)? = null)

Parameters

caption - window title

text - window content text.

rich - determines if text can contain HTML code

align - text align

size - modal window size

animation - determines if animations are used

cancelVisible - determines if Cancel button is visible

yesTitle - yes button text

noTitle - no button text

cancelTitle - cancel button text

noCallback - a function called after closing window with No button

yesCallback - a function called after closing window with Yes button

Constructor