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
Number of stored XFA packets.
Declaration
public int Count { get; }
Property Value
|
System.Int32
|
Methods
Clear()
Remove all packets from the collection.
Declaration
public void Clear()
GetEnumerator()
Return an enumerator over name/data pairs.
Declaration
public IEnumerator<KeyValuePair<string, byte[]>> GetEnumerator()
Returns
|
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String, System.Byte[]>>
|
Implements
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Return an enumerator over name/data pairs.
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
|
System.Collections.IEnumerator
|