Click or drag to resize

PdfIntegrationProviderOnDocumentUploading Method

Called before a document is uploaded into an empty PdfWebControlLite instance.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public virtual void OnDocumentUploading(
	DocumentUploadingEventArgs e
)

Parameters

e
Type: RadPdf.IntegrationDocumentUploadingEventArgs
An object (defined by DocumentUploadingEventArgs) that contains event data.
Remarks

Inheriting classes can override this method to perform other tasks, modify aspects of loading the uploaded the document, or cancel the upload all together. If this method is overridden in an inheriting class, you must call the base implementation.

This method is not triggered by CreateDocument(String, Byte) or other similar overloads.

See Also