IMessageDialogOptions interface

Options for showing a message dialog

Extends

IDialogOptions<boolean>

Properties

cancelText

Custom text for the Cancel button

okText

Custom text for the OK button

showCancel

If true, show the cancel button

Inherited Properties

configuration

Optional initial configuration for the dialog content

lightDismiss

If true, clicking outside the dialog closes it

onClose

Callback invoked when the dialog is closed

title

Dialog title

Property Details

cancelText

Custom text for the Cancel button

cancelText?: string

Property Value

string

okText

Custom text for the OK button

okText?: string

Property Value

string

showCancel

If true, show the cancel button

showCancel?: boolean

Property Value

boolean

Inherited Property Details

configuration

Optional initial configuration for the dialog content

configuration?: any

Property Value

any

Inherited From IDialogOptions.configuration

lightDismiss

If true, clicking outside the dialog closes it

lightDismiss?: boolean

Property Value

boolean

Inherited From IDialogOptions.lightDismiss

onClose

Callback invoked when the dialog is closed

onClose?: (result: undefined | boolean) => void

Property Value

(result: undefined | boolean) => void

Inherited From IDialogOptions.onClose

title

Dialog title

title?: string

Property Value

string

Inherited From IDialogOptions.title