TemplateCollection

TemplateCollection class

Represents a collection of document parsing templates.

public class TemplateCollection : IEnumerable<Template>

Constructors

Name Description
TemplateCollection() Initializes a new instance of the TemplateCollection class.
TemplateCollection(IEnumerable<Template>) Initializes a new instance of the TemplateCollection class.

Properties

Name Description
Count { get; } Gets the number of templates contained in the TemplateCollection.

Methods

Name Description
Add(Template) Adds a template to the end of the TemplateCollection.
Clear() Removes all elements from the TemplateCollection.
Get(int) Gets the template at the specified index.
GetEnumerator() Returns an enumerator that iterates through the TemplateCollection.
Remove(Template) Removes the first occurrence of a specific template from the TemplateCollection.
RemoveAt(int) Removes the template at the specified index of the TemplateCollection.

See Also