Event types.
Namespace:
Greatis.NostalgiaAssembly: Greatis.Nostalgia (in Greatis.Nostalgia.dll)
Syntax
| Visual Basic (Declaration) |
|---|
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 | Description | |
|---|---|---|
| Min |
The lowest possible event value.
| |
| Max |
The highest possible event value.
| |
| SystemSound |
A sound has been played.
| |
| SystemAlert |
An alert has been generated.
| |
| SystemForeground |
The foreground window has changed.
| |
| SystemMenuStart |
A menu item on the menu bar has been selected.
| |
| SystemMenuEnd |
A menu from the menu bar has been closed.
| |
| SystemMenuPopupStart |
A pop-up menu has been displayed.
| |
| SystemMenuPopupEnd |
A pop-up menu has been closed.
| |
| SystemCaptureStart |
A window has received mouse capture.
| |
| SystemCaptureEnd |
A window has lost mouse capture.
| |
| SystemMoveSizeStart |
A window is being moved or resized.
| |
| SystemMoveSizeEnd |
The movement or resizing of a window has finished.
| |
| SystemContextHelpStart |
A window has entered context-sensitive Help mode.
| |
| SystemContextHelpEnd |
A window has exited context-sensitive Help mode.
| |
| SystemDragDropStart |
An application is about to enter drag-and-drop mode.
| |
| SystemDragDropEnd |
An application is about to exit drag-and-drop mode.
| |
| SystemDialogStart |
A dialog box has been displayed.
| |
| SystemDialogEnd |
A dialog box has been closed.
| |
| SystemScrollingStart |
Scrolling has started on a scroll bar.
| |
| SystemScrollingEnd |
Scrolling has ended on a scroll bar.
| |
| SystemSwitchStart |
The user has pressed ALT+TAB, which activates the switch window.
| |
| SystemSwitchEnd |
The user has released ALT+TAB.
| |
| SystemMinimizeStart |
A window object is about to be minimized.
| |
| SystemMinimizeEnd |
A window object has been minimized.
| |
| ObjectCreate |
An object has been created.
| |
| ObjectDestroy |
An object has been destroyed.
| |
| ObjectShow |
A hidden object is shown.
| |
| ObjectHide |
An object is hidden.
| |
| ObjectReorder |
A container object has added, removed, or reordered its children.
| |
| ObjectFocus |
An object has received the keyboard focus.
| |
| ObjectSelection |
The selection within a container object has changed.
| |
| ObjectSelectionAdd |
A child within a container object has been added to an existing selection.
| |
| ObjectSelectionRemove |
An item within a container object has been removed from the selection.
| |
| ObjectSelectionWithin |
Numerous selection changes have occurred within a container object.
| |
| ObjectStateChange |
An object's state has changed.
| |
| ObjectLocationChange |
An object has changed location, shape, or size.
| |
| ObjectNameChange |
An object's Name property has changed.
| |
| ObjectDescriptionChange |
An object's Description property has changed.
| |
| ObjectValueChange |
An object's Value property has changed.
| |
| ObjectParentChange |
An object has a new parent object.
| |
| ObjectHelpChange |
An object's Help property has changed.
| |
| ObjectDefactionChange |
An object's DefaultAction property has changed.
| |
| ObjectAcceleratorChange |
An object's KeyboardShortcut property has changed.
|