StructureRepairOptionsNameReplacer Delegate |
A delegate that is used to rename an existing name.
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 string NameReplacer(
string name,
IList<string> existing
)
Public Delegate Function NameReplacer (
name As String,
existing As IList(Of String)
) As String
Parameters
- name
- Type: SystemString
The name to be renamed. May be null or empty. - existing
- Type: System.Collections.GenericIListString
The existing names in the name tree.
Return Value
Type:
StringA non-empty, non-null string for the new name. If the returned value is in the existing list, this will throw a PdfException.
See Also