RemoveAt method

void RemoveAt(
  1. int index
)
Removes the search filter at the specified index from the collection. The zero-based index of the search filter to remove.

Implementation

void RemoveAt(int index) {
  if (index < 0 || index >= this.Count) {
    throw new RangeError.range(
        index, 0, this.Count, "index", "Strings.IndexIsOutOfRange");
  }

  this[index].removeChangeEvent(this.SearchFilterChanged);
  this._searchFilters.removeAt(index);
  this.Changed();
}