Click or drag to resize

ArrayRepairOptionsArrayElementReplacer Delegate

This delegate is used to replace a missing or damaged array element.

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 bool ArrayElementReplacer(
	Array arr,
	int index,
	Object fileParsedValue,
	ref Object replacementValue
)

Parameters

arr
Type: SystemArray
The array that needs repair.
index
Type: SystemInt32
The index of the damaged element.
fileParsedValue
Type: SystemObject
The value parsed from the file. This may be null.
replacementValue
Type: SystemObject
The replacement value.

Return Value

Type: Boolean
true if the value should be replaced with replacementValue, false otherwise
See Also