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