LinePrinter.FooterEventHandler Delegate

A delegate for handling Footer Events in an application. This delegate allows an application to define what prints in a footer.

To use the event, add this code to your application:

LinePrinter.FooterEventEx += new LinePrinter.FooterEventHandler(PrintFooter);

Syntax

[VisualBasic]
Public Delegate Sub LinePrinter.FooterEventHandler( _
ByVal source As Object, _
ByVal e As EventArgs _ )
[C#]
public delegate void LinePrinter.FooterEventHandler(
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