AutomationNotificationKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the type of notification when calling RaiseNotificationEvent
public enum class AutomationNotificationKind
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
enum class AutomationNotificationKind
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
public enum AutomationNotificationKind
Public Enum AutomationNotificationKind
- Inheritance
-
AutomationNotificationKind
- Attributes
Fields
Name | Value | Description |
---|---|---|
ItemAdded | 0 | The current element container has had something added to it that should be presented to the user. |
ItemRemoved | 1 | The current element has had something removed from inside it that should be presented to the user. |
ActionCompleted | 2 | The current element has a notification that an action was completed. |
ActionAborted | 3 | The current element has a notification that an action was abandoned. |
Other | 4 | The current element has a notification not an add, remove, completed, or aborted action. |