Event args used when resolving a duplicate form field name during document merge; supplies original, proposed, and already used names.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
C#
public class MergedFormFieldNameResolvingEventArgs : EventArgs
Inheritance: objectEventArgsMergedFormFieldNameResolvingEventArgs
Inherited Members
Constructors
Create args with the conflicting name, initial new name proposal, and set of existing form field names.
C#
public MergedFormFieldNameResolvingEventArgs(string name, string newName, IEnumerable<string> usedFieldNames)
The current name of the field.
newNamestringThe new name of the field.
usedFieldNamesIEnumerable<string>The names that are currently used in the AcroForm.
Properties
The conflicting original field name.
C#
public string Name { get; }
The name.
Proposed new unique field name (handler may modify).
C#
public string NewName { get; set; }
The new name.
Existing field names present in the target document for conflict checking.
C#
public IEnumerable<string> UsedNames { get; }
The used names.