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