Class FieldOptionCollection<T>
Represents a collection of field options.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class FieldOptionCollection<T> : IEnumerable<T>, IEnumerable where T : FieldOptionBase
Type Parameters
T
|
Properties
Count
Gets the number of elements contained in the collection.
Declaration
public int Count { get; }
Property Value
System.Int32
The number of elements contained in the collection. |
Item[Int32]
Gets or sets the element at the specified index.
Declaration
public T this[int index] { get; set; }
Parameters
System.Int32
index
The index. |
Property Value
T
|
Methods
Add(T)
Adds option.
Declaration
public void Add(T option)
Parameters
T
option
The option. |
Clear()
Removes all elements from the collection.
Declaration
public void Clear()
GetEnumerator()
Iterates the options in the collection.
Declaration
public IEnumerator<T> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<T>
The options. |
Implements
RemoveAt(Int32)
Removes option at specified index.
Declaration
public void RemoveAt(int index)
Parameters
System.Int32
index
The option index. |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Iterates the options in the collection.
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
The options. |