Esempio n. 1
0
 public void Remove(OutlookBarButton value)
 {
     List.Remove(value);
 }
Esempio n. 2
0
        // Properties

        /*public int this[OutlookBarButton item]
         * {
         *  get
         *  {
         *      return this.List.IndexOf(item);
         *  }
         * }*/

        public int SelectedIndex(OutlookBarButton item)
        {
            return(this.List.IndexOf(item));
        }
Esempio n. 3
0
 public void Insert(int index, OutlookBarButton value)
 {
     List.Insert(index, value);
 }
Esempio n. 4
0
 public bool Contains(OutlookBarButton item)
 {
     return(List.Contains(item));
 }