Class XfaCollection
Represents a collection of XFA (XML Forms Architecture) forms, allowing for storing and managing form data as a collection of name and byte array pairs.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class XfaCollection : IEnumerable<KeyValuePair<string, byte[]>>, IEnumerable
Properties
Count
Gets the number of form entries in the collection.
Declaration
public int Count { get; }
Property Value
System.
|
Methods
Clear()
Removes all form entries from the collection.
Declaration
public void Clear()
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<KeyValuePair<string, byte[]>> GetEnumerator()
Returns
System. An enumerator for the collection. |
Implements
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System. An enumerator for the collection. |