Click or drag to resize

DefaultPdfIntegrationProviderOnObjectDataAdding Method

Called before an object's data (e.g. the image data for an PdfImageShape object) is added.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public override void OnObjectDataAdding(
	ObjectDataAddingEventArgs e
)

Parameters

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

Inheriting classes can override this method to perform other tasks or cancel the object image addition all together. If this method is overridden in an inheriting class, you must call the base implementation.

This implementation applies the legacy AppSetting RadPdfDocumentOverheadMax.

This method is not triggered by changes made using a PdfDocumentEditor instance.

See Also