-
Notifications
You must be signed in to change notification settings - Fork 3
MessageDialogButtonDisplay
Back to home | Back to Reference | View raw text
Set how many buttons to display at the bottom of the dialog.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi
SolidShineUi.MessageDialogButtonDisplay[[MessageDialogButtonDisplay]]
end
Set how many buttons to display at the bottom of the dialog.
MessageDialogButtonDisplay.Auto is used by default; if MessageDialogButtonDisplay.Auto is used, the MessageDialog.OkButtonText , MessageDialog.CancelButtonText , and MessageDialog.DiscardButtonText properties determine which buttons are displayed.
If set, uses the OkButtonText, CancelButtonText, and DiscardButtonText properties to determine which buttons should be displayed. If a property is null or empty, then the corresponding button isn't displayed.
Display only one button, the OK button. Outputs as MessageDialogResult.OK
when clicked.
Display two buttons, the OK and Cancel buttons. Outputs as MessageDialogResult.OK
or MessageDialogResult.Cancel
when clicked.
Display three buttons, the OK, Discard, and Cancel buttons. Outputs as MessageDialogResult.OK
, MessageDialogResult.Discard
or MessageDialogResult.Cancel
when clicked.
Generated with ModularDoc