Click or drag to resize

AnnotationDataImporterFactory Delegate

A delegate for constructing annotations from data that a given AnnotationDataImporter doesn't understand.

Namespace:  Atalasoft.Annotate.Importers
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public delegate AnnotationData AnnotationDataImporterFactory(
	AnnotationDataImporter importer,
	RectangleF location,
	Object data
)

Parameters

importer
Type: Atalasoft.Annotate.ImportersAnnotationDataImporter
The AnnotationDataImporter that attempted to import the annotation.
location
Type: System.DrawingRectangleF
The location on the target page where the annotation will go.
data
Type: SystemObject
The data used to construct the annotation.

Return Value

Type: AnnotationData
A new AnnotationData object or null. If the delegate returns null, this annotation is ignored.
See Also