ClassMergedFormFieldNameResolvingEventArgs
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:
public class MergedFormFieldNameResolvingEventArgs : EventArgs
Inheritance: objectEventArgsMergedFormFieldNameResolvingEventArgs
Inherited Members
Constructors
MergedFormFieldNameResolvingEventArgs(string, string, IEnumerable<string>)
Create args with the conflicting name, initial new name proposal, and set of existing form field names.
Declaration
public MergedFormFieldNameResolvingEventArgs(string name, string newName, IEnumerable<string> usedFieldNames)
Parameters
name
The current name of the field.
newName
The new name of the field.
usedFieldNames
The names that are currently used in the AcroForm.
Properties
Name
The conflicting original field name.
NewName
Proposed new unique field name (handler may modify).
Declaration
public string NewName { get; set; }
Property Value
The new name.
UsedNames
Existing field names present in the target document for conflict checking.
Declaration
public IEnumerable<string> UsedNames { get; }
Property Value
The used names.