Event types.
Namespace:
Greatis.NostalgiaAssembly: Greatis.Nostalgia (in Greatis.Nostalgia.dll)
Syntax
| Visual Basic |
|---|
Public Enumeration EventType |
| C# |
|---|
public enum EventType |
| Visual C++ |
|---|
public enum class EventType |
| JavaScript |
|---|
Greatis.Nostalgia.EventType = function(); Greatis.Nostalgia.EventType.createEnum('Greatis.Nostalgia.EventType', false); |
Members
| Member name | Value | Description | |
|---|---|---|---|
| Min | 1 | The lowest possible event value. | |
| Max | 2147483647 | The highest possible event value. | |
| SystemSound | 1 | A sound has been played. | |
| SystemAlert | 2 | An alert has been generated. | |
| SystemForeground | 3 | The foreground window has changed. | |
| SystemMenuStart | 4 | A menu item on the menu bar has been selected. | |
| SystemMenuEnd | 5 | A menu from the menu bar has been closed. | |
| SystemMenuPopupStart | 6 | A pop-up menu has been displayed. | |
| SystemMenuPopupEnd | 7 | A pop-up menu has been closed. | |
| SystemCaptureStart | 8 | A window has received mouse capture. | |
| SystemCaptureEnd | 9 | A window has lost mouse capture. | |
| SystemMoveSizeStart | 10 | A window is being moved or resized. | |
| SystemMoveSizeEnd | 11 | The movement or resizing of a window has finished. | |
| SystemContextHelpStart | 12 | A window has entered context-sensitive Help mode. | |
| SystemContextHelpEnd | 13 | A window has exited context-sensitive Help mode. | |
| SystemDragDropStart | 14 | An application is about to enter drag-and-drop mode. | |
| SystemDragDropEnd | 15 | An application is about to exit drag-and-drop mode. | |
| SystemDialogStart | 16 | A dialog box has been displayed. | |
| SystemDialogEnd | 17 | A dialog box has been closed. | |
| SystemScrollingStart | 18 | Scrolling has started on a scroll bar. | |
| SystemScrollingEnd | 19 | Scrolling has ended on a scroll bar. | |
| SystemSwitchStart | 20 | The user has pressed ALT+TAB, which activates the switch window. | |
| SystemSwitchEnd | 21 | The user has released ALT+TAB. | |
| SystemMinimizeStart | 22 | A window object is about to be minimized. | |
| SystemMinimizeEnd | 23 | A window object has been minimized. | |
| ObjectCreate | 32768 | An object has been created. | |
| ObjectDestroy | 32769 | An object has been destroyed. | |
| ObjectShow | 32770 | A hidden object is shown. | |
| ObjectHide | 32771 | An object is hidden. | |
| ObjectReorder | 32772 | A container object has added, removed, or reordered its children. | |
| ObjectFocus | 32773 | An object has received the keyboard focus. | |
| ObjectSelection | 32774 | The selection within a container object has changed. | |
| ObjectSelectionAdd | 32775 | A child within a container object has been added to an existing selection. | |
| ObjectSelectionRemove | 32776 | An item within a container object has been removed from the selection. | |
| ObjectSelectionWithin | 32777 | Numerous selection changes have occurred within a container object. | |
| ObjectStateChange | 32778 | An object's state has changed. | |
| ObjectLocationChange | 32779 | An object has changed location, shape, or size. | |
| ObjectNameChange | 32780 | An object's Name property has changed. | |
| ObjectDescriptionChange | 32781 | An object's Description property has changed. | |
| ObjectValueChange | 32782 | An object's Value property has changed. | |
| ObjectParentChange | 32783 | An object has a new parent object. | |
| ObjectHelpChange | 32784 | An object's Help property has changed. | |
| ObjectDefactionChange | 32785 | An object's DefaultAction property has changed. | |
| ObjectAcceleratorChange | 32786 | An object's KeyboardShortcut property has changed. |