Share via


OutputCompleteEventHandler Delegate

Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)

Usage

'Usage
Sub Sub1(sender As Object, _
    e As OutputCompleteEventArgs)
End Sub
Dim outputCompleteEventHandler1 As New OutputCompleteEventHandler(AddressOf Sub1)

Syntax

'Declaration
Public Delegate Sub OutputCompleteEventHandler( _
    ByVal sender As Object, _
    ByVal e As OutputCompleteEventArgs _
)
public delegate void OutputCompleteEventHandler(
    object sender,
    OutputCompleteEventArgs e
);
public delegate Void OutputCompleteEventHandler(
    Object^ sender,
    OutputCompleteEventArgs^ e
);
public delegate void OutputCompleteEventHandler(
    System.Object sender,
    OutputCompleteEventArgs e
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • sender
    The service object sending the event.
  • e
    The event, which is an instance of the OutputCompleteEventArgs class. The OutputCompleteEventArgs.OutputID property should contain the OutputID associated with the complete asynchronous processing function.

Remarks

Delegate for the PosPrinter.OutputCompleteEvent event.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.PointOfService Namespace
OutputCompleteEvent
OutputCompleteEventArgs