Click or drag to resize

PdfIntegrationProviderOnDocumentCreated Method

Called after a document is created.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.43.0.0 (3.43.0.0)
Syntax
public virtual void OnDocumentCreated(
	DocumentCreatedEventArgs e
)

Parameters

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

Inheriting classes can override this method to perform other tasks or retrieve the created document. If this method is overridden in an inheriting class, you must call the base implementation.

This method is triggered when CopyDocument(Int32, Boolean), CreateDocument(String, Byte), or their other overloads are successful.

See Also