Class MergedFormFieldNameResolvingEventArgs
Provides additional data for the MergedFieldNameResolving event.
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>)
Initializes a new instance of the MergedFormFieldNameResolvingEventArgs class.
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
Gets the current field name.
Declaration
public string Name { get; }
Property Value
System.String
The name. |
NewName
Gets or sets the new field name.
Declaration
public string NewName { get; set; }
Property Value
System.String
The new name. |
UsedNames
Gets the names that are already used for fields in the same RadFixedDocument.
Declaration
public IEnumerable<string> UsedNames { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
The used names. |