interface Button {
    IsCancel: undefined | boolean;
    IsDefault: undefined | boolean;
    Label: undefined | string;
}

Properties

IsCancel: undefined | boolean

True if the button should cancel an operation when clicked.

IsDefault: undefined | boolean

True if the button should be the default action when the user presses enter.

Label: undefined | string

Text that appears within the button.

Generated using TypeDoc