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