[]
Represents a collection of Field objects.
public class FieldCollection : OwnedCollection<Field>, IList<Field>, ICollection<Field>, IReadOnlyList<Field>, IReadOnlyCollection<Field>, IEnumerable<Field>, IOwnedObject, IList, ICollection, IEnumerable
Gets the AcroForm object.
public AcroForm AcroForm { get; }
Gets the GcPdfDocument object that owns this collection.
public GcPdfDocument Doc { get; }
Gets the Field owning this collection.
public Field Field { get; }
Gets a value indicating whether collection contains Signature fields.
public bool HasSignatures { get; }
Gets the Field with specified name, throws an exception if field not found.
public Field this[string fieldName] { get; }
fieldName
stringThe field's name.
Returns the field with specified name.
Gets the PdfDictWrapper object that owns this collection.
public PdfDictWrapper Owner { get; }
protected override void ClearItems()
Searches Field with specified name, search is case sensitive.
public Field FindByName(string fieldName)
fieldName
stringThe field's name.
protected override void InsertItem(int index, Field item)
protected override void RemoveItem(int index)
index
intprotected override void SetItem(int index, Field item)