Event types.

Namespace:  Greatis.Nostalgia
Assembly:  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 nameValueDescription
Min1 The lowest possible event value.
Max2147483647 The highest possible event value.
SystemSound1 A sound has been played.
SystemAlert2 An alert has been generated.
SystemForeground3 The foreground window has changed.
SystemMenuStart4 A menu item on the menu bar has been selected.
SystemMenuEnd5 A menu from the menu bar has been closed.
SystemMenuPopupStart6 A pop-up menu has been displayed.
SystemMenuPopupEnd7 A pop-up menu has been closed.
SystemCaptureStart8 A window has received mouse capture.
SystemCaptureEnd9 A window has lost mouse capture.
SystemMoveSizeStart10 A window is being moved or resized.
SystemMoveSizeEnd11 The movement or resizing of a window has finished.
SystemContextHelpStart12 A window has entered context-sensitive Help mode.
SystemContextHelpEnd13 A window has exited context-sensitive Help mode.
SystemDragDropStart14 An application is about to enter drag-and-drop mode.
SystemDragDropEnd15 An application is about to exit drag-and-drop mode.
SystemDialogStart16 A dialog box has been displayed.
SystemDialogEnd17 A dialog box has been closed.
SystemScrollingStart18 Scrolling has started on a scroll bar.
SystemScrollingEnd19 Scrolling has ended on a scroll bar.
SystemSwitchStart20 The user has pressed ALT+TAB, which activates the switch window.
SystemSwitchEnd21 The user has released ALT+TAB.
SystemMinimizeStart22 A window object is about to be minimized.
SystemMinimizeEnd23 A window object has been minimized.
ObjectCreate32768 An object has been created.
ObjectDestroy32769 An object has been destroyed.
ObjectShow32770 A hidden object is shown.
ObjectHide32771 An object is hidden.
ObjectReorder32772 A container object has added, removed, or reordered its children.
ObjectFocus32773 An object has received the keyboard focus.
ObjectSelection32774 The selection within a container object has changed.
ObjectSelectionAdd32775 A child within a container object has been added to an existing selection.
ObjectSelectionRemove32776 An item within a container object has been removed from the selection.
ObjectSelectionWithin32777 Numerous selection changes have occurred within a container object.
ObjectStateChange32778 An object's state has changed.
ObjectLocationChange32779 An object has changed location, shape, or size.
ObjectNameChange32780 An object's Name property has changed.
ObjectDescriptionChange32781 An object's Description property has changed.
ObjectValueChange32782 An object's Value property has changed.
ObjectParentChange32783 An object has a new parent object.
ObjectHelpChange32784 An object's Help property has changed.
ObjectDefactionChange32785 An object's DefaultAction property has changed.
ObjectAcceleratorChange32786 An object's KeyboardShortcut property has changed.

See Also