A delegate for handling status events in an application that are not header or footer events. This allows an application to define what action will take place at different points during the print process. To use add the following code to your application:
LinePrinter.StatusMessageEventEx += new LinePrinter.StatusMessageEventHandler(DisplayStatus);
[Visual Basic]
Public Delegate Sub LinePrinter.StatusMessageEventHandler( _
ByVal source As Object, _
ByVal e As StatusMessageArgs _ )
[C#]
public delegate void LinePrinter.StatusMessageEventHandler(
object source, StatusMessageArgs e
);
source
A pointer to the object that created the event.
e
A StatusMessageArgs class derived from EventArgs. See StatusMessageArgs for information on the extended information passed via this class.
Namespace: Honeywell.Mobility.Print
Assembly: Honeywell.Mobility.Print.LinePrinter.dll