public bool Contains(Style style) { return List.Contains(style); }
public int Add(Style style) { return List.Add(style); }
public void Insert(int index, Style style) { List.Insert(index, style); }
public void Remove(Style style) { List.Remove(style); }
public int IndexOf(Style style) { return List.IndexOf(style); }