PdfFileEditor.UniqueSuffix

PdfFileEditor.UniqueSuffix property

Format of the suffix which is added to field name to make it unique when forms are concatenated. This string must contain %NUM% substring which will be replaced with numbers. For example if UniqueSuffix = “ABC%NUM%” then for field “fieldName” names will be: fieldNameABC1, fieldNameABC2, fieldNameABC3 etc.

public string UniqueSuffix { get; set; }

Examples

PdfFileEditor ed = new PdfFileEditor();
ed.UniqueSuffix = "_%NUM%";

See Also