The result of a dialog.

interface IResult<T> {
    button: IButton;
    isChecked: null | boolean;
    value: null | T;
}

Type Parameters

  • T

Properties

button: IButton

The button that was pressed.

isChecked: null | boolean

State of the dialog checkbox.

Notes

It will be null if no checkbox is defined for the dialog.

value: null | T

The value retrieved from .getValue() if given on the widget.