Enum DismissType
Every possible reason why a Notification element can be dismissed.
Namespace: Unity.AppUI.Core
Syntax
public enum DismissType
Fields
| Name | Description | Value |
|---|---|---|
| Action | The Notification element has been dismissed via an action click. |
0 |
| Consecutive | The Notification element has been dismissed via an action click. |
1 |
| Manual | The Notification element has been dismissed via a call of the method Dismiss(). |
2 |
| Timeout | The Notification element has been dismissed via a time out. |
3 |
| OutOfBounds | The popup element has been dismissed via a click out of the element bounding box. |
4 |
| Cancel | The popup element has been dismissed via a Cancel action (Esc key, or Back button on mobile). |
5 |
| PanelDestroyed | The popup element has been dismissed because the panel has been destroyed. |
6 |