Esempio n. 1
0
 public bool Contains(Style style)
 {
     return List.Contains(style);
 }
Esempio n. 2
0
 public int Add(Style style)
 {
     return List.Add(style);
 }
Esempio n. 3
0
 public void Insert(int index, Style style)
 {
     List.Insert(index, style);
 }
Esempio n. 4
0
 public void Remove(Style style)
 {
     List.Remove(style);
 }
Esempio n. 5
0
 public int IndexOf(Style style)
 {
     return List.IndexOf(style);
 }