New to Telerik Document ProcessingStart a free 30-day trial

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.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.InteractiveForms

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public class XfaCollection : IEnumerable<KeyValuePair<string, byte[]>>, IEnumerable

Inheritance: objectXfaCollection

Implements: IEnumerableIEnumerable<KeyValuePair<string, byte[]>>

Methods

Remove all packets from the collection.

C#
public void Clear()

Return an enumerator over name/data pairs.

C#
public IEnumerator<KeyValuePair<string, byte[]>> GetEnumerator()
Returns:

IEnumerator<KeyValuePair<string, byte[]>>

Implements: IEnumerable<KeyValuePair<string, byte[]>>.GetEnumerator()

Properties

Number of stored XFA packets.

C#
public int Count { get; }