Class MergedFormFieldNameResolvingEventArgs
Event args used when resolving a duplicate form field name during document merge; supplies original, proposed, and already used names.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class MergedFormFieldNameResolvingEventArgs : EventArgs
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
|
System.String
name
The current name of the field. |
|
System.String
newName
The new name of the field. |
|
System.Collections.Generic.IEnumerable<System.String>
usedFieldNames
The names that are currently used in the AcroForm. |
Properties
Name
The conflicting original field name.
Declaration
public string Name { get; }
Property Value
|
System.String
The name. |
NewName
Proposed new unique field name (handler may modify).
Declaration
public string NewName { get; set; }
Property Value
|
System.String
The new name. |
UsedNames
Existing field names present in the target document for conflict checking.
Declaration
public IEnumerable<string> UsedNames { get; }
Property Value
|
System.Collections.Generic.IEnumerable<System.String>
The used names. |