Exemple #1
0
 public int IndexOf(FilterControl fc)
 {
     return this.List.IndexOf(fc);
 }
Exemple #2
0
 public void CopyTo(FilterControl[] array, int index)
 {
     this.List.CopyTo(array, index);
 }
Exemple #3
0
 public void Remove(FilterControl fc)
 {
     this.List.Remove(fc);
 }
Exemple #4
0
 public bool Contains(FilterControl fc)
 {
     return this.List.Contains(fc);
 }
Exemple #5
0
 public void Add(FilterControl fc)
 {
     this.List.Add(fc);
 }
Exemple #6
0
 public void Insert(int index, FilterControl fc)
 {
     this.List.Insert(index, fc);
 }
Exemple #7
0
 public int IndexOf(FilterControl fc)
 {
     return(this.List.IndexOf(fc));
 }
Exemple #8
0
 public bool Contains(FilterControl fc)
 {
     return(this.List.Contains(fc));
 }
Exemple #9
0
 public void Remove(FilterControl fc)
 {
     this.List.Remove(fc);
 }
Exemple #10
0
 public void Insert(int index, FilterControl fc)
 {
     this.List.Insert(index, fc);
 }
Exemple #11
0
 public void Add(FilterControl fc)
 {
     this.List.Add(fc);
 }