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.

Definition

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

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

cs-api-definition
public class XfaCollection : IEnumerable<KeyValuePair<string, byte[]>>, IEnumerable

Inheritance: objectXfaCollection

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

Properties

Count

Number of stored XFA packets.

Declaration

cs-api-definition
public int Count { get; }

Property Value

int

Methods

Clear()

Remove all packets from the collection.

Declaration

cs-api-definition
public void Clear()

GetEnumerator()

Return an enumerator over name/data pairs.

Declaration

cs-api-definition
public IEnumerator<KeyValuePair<string, byte[]>> GetEnumerator()

Returns

IEnumerator<KeyValuePair<string, byte[]>>

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