This enumeration lists known accessible event types.

C# |
public enum AccessibleEventType

Member | Description |
---|---|
EVENT_SYSTEM_SOUND |
Sent when a sound is played. Currently nothing is generating this, we
are going to be cleaning up the SOUNDSENTRY feature in the control panel
and will use this at that time. Applications implementing WinEvents
are perfectly welcome to use it. Clients of IAccessible* will simply
turn around and get back a non-visual object that describes the sound.
|
EVENT_SYSTEM_ALERT |
Sent when an alert needs to be given to the user. MessageBoxes generate
alerts for example.
|
EVENT_SYSTEM_FOREGROUND |
Sent when the foreground (active) window changes, even if it is changing
to another window in the same thread as the previous one.
|
EVENT_SYSTEM_MENUSTART |
Sent when entering into and leaving from menu mode (system, app bar, and
track popups).
|
EVENT_SYSTEM_MENUEND |
Sent when entering into and leaving from menu mode (system, app bar, and
track popups).
|
EVENT_SYSTEM_MENUPOPUPSTART |
Sent when a menu popup comes up and just before it is taken down. Note
that for a call to TrackPopupMenu(), a client will see EVENT_SYSTEM_MENUSTART
followed almost immediately by EVENT_SYSTEM_MENUPOPUPSTART for the popup
being shown.
|
EVENT_SYSTEM_MENUPOPUPEND |
Sent when a menu popup comes up and just before it is taken down. Note
that for a call to TrackPopupMenu(), a client will see EVENT_SYSTEM_MENUSTART
followed almost immediately by EVENT_SYSTEM_MENUPOPUPSTART for the popup
being shown.
|
EVENT_SYSTEM_CAPTURESTART |
Sent when a window takes the capture and releases the capture.
|
EVENT_SYSTEM_CAPTUREEND |
Sent when a window takes the capture and releases the capture.
|
EVENT_SYSTEM_MOVESIZESTART |
Sent when a window enters and leaves move-size dragging mode.
|
EVENT_SYSTEM_MOVESIZEEND |
Sent when a window enters and leaves move-size dragging mode.
|
EVENT_SYSTEM_CONTEXTHELPSTART |
Sent when a window enters and leaves context sensitive help mode.
|
EVENT_SYSTEM_CONTEXTHELPEND |
Sent when a window enters and leaves context sensitive help mode.
|
EVENT_SYSTEM_DRAGDROPSTART |
Sent when a window enters and leaves drag drop mode. Note that it is up
to apps and OLE to generate this, since the system doesn't know. Like
EVENT_SYSTEM_SOUND, it will be a while before this is prevalent.
|
EVENT_SYSTEM_DRAGDROPEND |
Sent when a window enters and leaves drag drop mode. Note that it is up
to apps and OLE to generate this, since the system doesn't know. Like
EVENT_SYSTEM_SOUND, it will be a while before this is prevalent.
|
EVENT_SYSTEM_DIALOGSTART |
Sent when a dialog comes up and just before it goes away.
|
EVENT_SYSTEM_DIALOGEND |
Sent when a dialog comes up and just before it goes away.
|
EVENT_SYSTEM_SCROLLINGSTART |
Sent when beginning and ending the tracking of a scrollbar in a window,
and also for scrollbar controls.
|
EVENT_SYSTEM_SCROLLINGEND |
Sent when beginning and ending the tracking of a scrollbar in a window,
and also for scrollbar controls.
|
EVENT_SYSTEM_SWITCHSTART |
Sent when beginning and ending alt-tab mode with the switch window.
|
EVENT_SYSTEM_SWITCHEND |
Sent when beginning and ending alt-tab mode with the switch window.
|
EVENT_SYSTEM_MINIMIZESTART |
Sent when a window minimizes.
|
EVENT_SYSTEM_MINIMIZEEND |
Sent just before a window restores.
|
EVENT_OBJECT_CREATE |
hwnd + ID + idChild is created item
|
EVENT_OBJECT_DESTROY |
hwnd + ID + idChild is destroyed item
|
EVENT_OBJECT_SHOW |
hwnd + ID + idChild is shown item
|
EVENT_OBJECT_HIDE |
hwnd + ID + idChild is hidden item
|
EVENT_OBJECT_REORDER |
hwnd + ID + idChild is parent of zordering children
|
EVENT_OBJECT_FOCUS |
hwnd + ID + idChild is focused item
|
EVENT_OBJECT_SELECTION |
hwnd + ID + idChild is selected item (if only one), or idChild is OBJID_WINDOW if complex
|
EVENT_OBJECT_SELECTIONADD |
hwnd + ID + idChild is item added
|
EVENT_OBJECT_SELECTIONREMOVE |
hwnd + ID + idChild is item removed
|
EVENT_OBJECT_SELECTIONWITHIN |
hwnd + ID + idChild is parent of changed selected items
|
EVENT_OBJECT_STATECHANGE |
hwnd + ID + idChild is item w/ state change
|
EVENT_OBJECT_LOCATIONCHANGE |
hwnd + ID + idChild is moved/sized item
|
EVENT_OBJECT_NAMECHANGE |
hwnd + ID + idChild is item w/ name change
|
EVENT_OBJECT_DESCRIPTIONCHANGE |
hwnd + ID + idChild is item w/ desc change
|
EVENT_OBJECT_VALUECHANGE |
hwnd + ID + idChild is item w/ value change
|
EVENT_OBJECT_PARENTCHANGE |
hwnd + ID + idChild is item w/ new parent
|
EVENT_OBJECT_HELPCHANGE |
hwnd + ID + idChild is item w/ help change
|
EVENT_OBJECT_DEFACTIONCHANGE |
hwnd + ID + idChild is item w/ def action change
|
EVENT_OBJECT_ACCELERATORCHANGE |
hwnd + ID + idChild is item w/ keybd accel change
|
EVENT_MIN |
The lowest possible event value
|
EVENT_MAX |
The highest possible event value
|