DialogParameters
interface DialogParameters
{
title: TranslationText;
message: TranslationText;
buttons: MessageBoxButtons;
onresult: (result: DialogResult) => void;
}
Properties
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.