Exemplo n.º 1
0
 //Collection IndexOf method
 public int IndexOf(FooterButton item)
 {
     return(List.IndexOf(item));
 }
Exemplo n.º 2
0
 public bool Contains(FooterButton footerButton)
 {
     return(this.List.Contains(footerButton));
 }
Exemplo n.º 3
0
 public void Insert(int index, FooterButton item)
 {
     this.List.Insert(index, item);
 }
Exemplo n.º 4
0
 public void Remove(FooterButton footerButton)
 {
     List.Remove(footerButton);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Adds a new error to the collection
 /// </summary>
 public void Add(FooterButton footerButton)
 {
     this.List.Add(footerButton);
 }