/// <summary> /// Determines whether a specfic SelectColumn value is in this SelectColumnCollection. /// </summary> /// <param name="value"> /// The SelectColumn value to locate in this SelectColumnCollection. /// </param> /// <returns> /// true if value is found in this SelectColumnCollection; /// false otherwise. /// </returns> public virtual bool Contains(SelectColumn value) { return(this.List.Contains(value)); }
/// <summary> /// Adds an instance of type SelectColumn to the end of this SelectColumnCollection. /// </summary> /// <param name="value"> /// The SelectColumn to be added to the end of this SelectColumnCollection. /// </param> public virtual void Add(SelectColumn value) { this.List.Add(value); }
/// <summary> /// Inserts an element into the SelectColumnCollection at the specified index /// </summary> /// <param name="index"> /// The index at which the SelectColumn is to be inserted. /// </param> /// <param name="value"> /// The SelectColumn to insert. /// </param> public virtual void Insert(int index, SelectColumn value) { this.List.Insert(index, value); }
/// <summary> /// Removes the first occurrence of a specific SelectColumn from this SelectColumnCollection. /// </summary> /// <param name="value"> /// The SelectColumn value to remove from this SelectColumnCollection. /// </param> public virtual void Remove(SelectColumn value) { this.List.Remove(value); }
/// <summary> /// Return the zero-based index of the first occurrence of a specific value /// in this SelectColumnCollection /// </summary> /// <param name="value"> /// The SelectColumn value to locate in the SelectColumnCollection. /// </param> /// <returns> /// The zero-based index of the first occurrence of the _ELEMENT value if found; /// -1 otherwise. /// </returns> public virtual int IndexOf(SelectColumn value) { return(this.List.IndexOf(value)); }