Represents the method that will handle the print notification events of print provider classes.

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

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Delegate Sub PrintNotificationEventHandler ( _
	sender As Object, _
	e As PrintNotificationEventArgs _
)
C#
[SerializableAttribute]
public delegate void PrintNotificationEventHandler(
	Object sender,
	PrintNotificationEventArgs e
)
Visual C++
[SerializableAttribute]
public delegate void PrintNotificationEventHandler(
	Object^ sender, 
	PrintNotificationEventArgs^ e
)
JavaScript
function(sender, e);

Parameters

sender
Type: System..::.Object
The source of the event.
e
Type: Greatis.PrintSuite..::.PrintNotificationEventArgs
Event data.

See Also