Click or drag to resize

PdfIntegrationProviderOnDocumentAppending Method

Called before a document is appended.

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

Parameters

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

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

This method is not triggered by Append(Byte) or other similar overloads.

See Also