Initializes a new instance of the LoadXpsDocumentCompletedEventArgs class.

Namespace: FirstFloor.Documents.IO
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public LoadXpsDocumentCompletedEventArgs(
	Exception error,
	bool cancelled,
	XpsDocument document,
	Object userState
)
Visual Basic
Public Sub New ( _
	error As Exception, _
	cancelled As Boolean, _
	document As XpsDocument, _
	userState As Object _
)
Visual C++
public:
LoadXpsDocumentCompletedEventArgs(
	Exception^ error, 
	bool cancelled, 
	XpsDocument^ document, 
	Object^ userState
)

Parameters

error
Type: System..::..Exception
The error.
cancelled
Type: System..::..Boolean
if set to true [cancelled].
document
Type: FirstFloor.Documents..::..XpsDocument
The document.
userState
Type: System..::..Object
State of the user.

See Also