Creates and initializes object instance.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	alert As Alert, _
	boxHandle As IntPtr, _
	boxCaption As String, _
	messageText As String, _
	buttons As MessageButtons, _
	eventTime As UInteger _
)
C#
public SystemAlertEventArgs(
	Alert alert,
	IntPtr boxHandle,
	string boxCaption,
	string messageText,
	MessageButtons buttons,
	uint eventTime
)
Visual C++
public:
SystemAlertEventArgs(
	Alert alert, 
	IntPtr boxHandle, 
	String^ boxCaption, 
	String^ messageText, 
	MessageButtons buttons, 
	unsigned int eventTime
)
JavaScript
Greatis.Nostalgia.SystemAlertEventArgs = function(alert, boxHandle, boxCaption, messageText, buttons, eventTime);

Parameters

alert
Type: Greatis.Nostalgia..::.Alert
Alert type.
boxHandle
Type: System..::.IntPtr
Message box window handle.
boxCaption
Type: System..::.String
Message box caption.
messageText
Type: System..::.String
Message box text.
buttons
Type: Greatis.Nostalgia..::.MessageButtons
Message box buttons.
eventTime
Type: System..::.UInt32
Time of the event.

See Also