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 raising the UI automation notification event.
public enum class AutomationNotificationKind
public enum AutomationNotificationKind
type AutomationNotificationKind =
Public Enum AutomationNotificationKind
- Inheritance
Fields
Name | Value | Description |
---|---|---|
ItemAdded | 0 | Something that should be presented to the user was added to the current element. |
ItemRemoved | 1 | Something that should be presented to the user was removed from the current element. |
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 that is not due to an addition or removal of something, or to a completed or aborted action. |