Пример #1
0
 public bool Contains(Style style)
 {
     return List.Contains(style);
 }
Пример #2
0
 public int Add(Style style)
 {
     return List.Add(style);
 }
Пример #3
0
 public void Insert(int index, Style style)
 {
     List.Insert(index, style);
 }
Пример #4
0
 public void Remove(Style style)
 {
     List.Remove(style);
 }
Пример #5
0
 public int IndexOf(Style style)
 {
     return List.IndexOf(style);
 }