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
)
Public Delegate Function ArrayElementReplacer (
arr As Array,
index As Integer,
fileParsedValue As Object,
ByRef replacementValue As Object
) As Boolean
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:
Booleantrue if the value should be replaced with replacementValue,
false otherwise
See Also