Skip to main content

DialogParameters

interface DialogParameters
{
title: TranslationText;
message: TranslationText;
buttons: MessageBoxButtons;
onresult: (result: DialogResult) => void;
}

Properties

Parameters

NameTypeDescription
titleTranslationTextThe title displayed at the top of the dialog
messageTranslationTextThe main content message of the dialog
buttonsMessageBoxButtonsSpecifies which buttons are displayed in the dialog
onresultfunction(result: !DialogResult!)Callback function executed when the user selects a button

Description

Configuration parameters for creating and displaying a dialog. These parameters define the dialog's appearance, content, available buttons, and the callback function that handles user interaction.