Interface IFormFieldCollection
Form field collection list
Namespace: IronSoftware.Forms
Assembly: IronPdf.dll
Syntax
public interface IFormFieldCollection : IList<IFormField>, ICollection<IFormField>, IEnumerable<IFormField>, IEnumerable
Methods
FindFormField(String)
Find a form field with the specified name. First tries to match a fully-qualified name. If a fully-qualified match cannot be found, then partial name matches are tried.
Declaration
IFormField FindFormField(string Name)
Parameters
Type | Name | Description |
---|---|---|
System.String | Name | Form field name |
Returns
Type | Description |
---|---|
IFormField | Form field with the specified name |