FormFieldCollection Methods
A collection of form fields contained in a PDF document.| Name | Description |
|---|---|
| Add(T) | Inherited from ObjectCollectionBase<T>. |
| Clear() | Inherited from ObjectCollectionBase<T>. |
| Clear(Boolean) | Removes all form fields from the collection. |
| Contains(T) | Inherited from ObjectCollectionBase<T>. |
| CopyTo(T[], Int32) | Inherited from ObjectCollectionBase<T>. |
| Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
| Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
| Find(Predicate<FormField>, out GroupField) | Searches for a form field that matches the specified criteria and returns the first occurrence within the entire collection of form fields. |
| Find(Predicate<FormField>) | Searches for a form field that matches the specified criteria and returns the first occurrence within the entire collection of form fields. |
| FindAll(Predicate<FormField>) | Searches the form field collection for fields that match the specified criteria and returns all matches. |
| FindByName(String, out GroupField) | Searches for a form field with the specified name and returns the first occurrence within the entire collection of form fields. |
| FindByName(String) | Searches for a form field with the specified name and returns the first occurrence within the entire collection of form fields. |
| FindParent(FormField) | Searches for the parent group of a specified form field and returns it if found. |
| GetEnumerator() | Inherited from ObjectCollectionBase<T>. |
| GetHashCode() | Serves as the default hash function. Inherited from Object. |
| GetType() | Gets the Type of the current instance. Inherited from Object. |
| IndexOf(T) | Inherited from ObjectCollectionBase<T>. |
| Insert(Int32, T) | Inherited from ObjectCollectionBase<T>. |
| MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
| ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
| Remove(T) | Inherited from ObjectCollectionBase<T>. |
| Remove(FormField, Boolean) | Removes a form field from the collection. |
| RemoveAt(Int32, Boolean) | Removes a form field at the specified index from the collection. |
| RemoveAt(Int32) | Inherited from ObjectCollectionBase<T>. |
| ToFlatEnumerable() | Converts a form field collection into a flattened collection that contains all fields in the document. |
| ToString() | Returns a string that represents the current object. Inherited from Object. |
See Also