[]
A collection of ValueInterval objects used by a PostValidation object. The collection is used if the Validation = PostValidationTypeEnum.ValuesAndIntervals or if the user calls the ValidateValuesAndIntervals method.
[ListBindable(false)]
public class ValueIntervalCollection : CollectionBase, IList, ICollection, IEnumerable
Name | Description |
---|---|
this[int] | Gets the collection element at the specified index. |
Name | Description |
---|---|
Add(ValueInterval) | Adds a new value interval to the collection. |
AddRange(ValueInterval[]) | Adds the elements of an array to the end of the collection. |
Contains(ValueInterval) | Returns True if the collection contains the specific value interval, False otherwise. |
CopyTo(ValueInterval[], int) | Copies elements of the collection to an array starting at a particular array index. |
IndexOf(ValueInterval) | Determines the index of a specific value interval in the collection, return -1 if this item not found. |
Insert(int, ValueInterval) | Inserts a new value interval to the collection at the specified position. |
OnInsert(int, object) | This method is for internal use only. |
OnSet(int, object, object) | This method is for internal use only. |
Remove(ValueInterval) | Removes a specific value interval from the collection. |