LinePrinter.HeaderEventHandler Delegate

A delegate for handling Header Events in an application. This allows an application to define what prints in a header. To use add the following code to your application:

LinePrinter.HeaderEventEx += new LinePrinter.HeaderEventHandler(PrintHeader);

Syntax

[Visual Basic]
Public Delegate Sub LinePrinter.HeaderEventHandler( _
ByVal source As Object, _
ByVal e As EventArgs _ )
[C#]
public delegate void LinePrinter.HeaderEventHandler(
object source,
EventArgs e
);

Parameters

source
A pointer to the object that created the event.

e
An Eventargs class. No extended information is added to this parameter.

Requirements

Namespace: Honeywell.Mobility.Print

Assembly: Honeywell.Mobility.Print.LinePrinter.dll

More Information

LinePrinter Class