Represents the method that will handle the hot key event.

Namespace:  Greatis.Nostalgia
Assembly:  Greatis.Nostalgia (in Greatis.Nostalgia.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Sub HotKeyEventHandler ( _
	sender As Object, _
	e As HotKeyEventArgs _
)
C#
public delegate void HotKeyEventHandler(
	Object sender,
	HotKeyEventArgs e
)
Visual C++
public delegate void HotKeyEventHandler(
	Object^ sender, 
	HotKeyEventArgs^ e
)
JavaScript
function(sender, e);

Parameters

sender
Type: System..::.Object
The source of the event.
e
Type: Greatis.Nostalgia..::.HotKeyEventArgs
Event data.

See Also