New to Telerik Document ProcessingStart a free 30-day trial

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 EventArgs.Empty

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)
Parameters:namestring

The current name of the field.

newNamestring

The 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; }
Property Value:

The name.

Proposed new unique field name (handler may modify).

C#
public string NewName { get; set; }
Property Value:

The new name.

Existing field names present in the target document for conflict checking.

C#
public IEnumerable<string> UsedNames { get; }
Property Value:

The used names.