This delegate will get called to select if a repair should be enacted.
Namespace:
Atalasoft.PdfDoc.Repair
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public delegate RepairAction RepairSelector(
Object sender,
BaseProblem problem
)
Public Delegate Function RepairSelector (
sender As Object,
problem As BaseProblem
) As RepairAction
Parameters
- sender
- Type: SystemObject
The object reporting the problem. - problem
- Type: Atalasoft.Shared.ValidationBaseProblem
The problem that needs to be repaired.
Return Value
Type:
RepairActionNoRepair if the problem will not be repaired,
Repair
if it will be repaired, and
Skip to ignore the problem.
Remarks If the problem is not repaired, it may cause a
PdfExceptionto be thrown later.
See Also