public void Insert(int index, ExampleScrollItemData item)
 {
     _data.Insert(index, item);
 }
 public int IndexOf(ExampleScrollItemData item)
 {
     return(_data.IndexOf(item));
 }
 public bool Contains(ExampleScrollItemData item)
 {
     return(_data.Contains(item));
 }
 public bool Remove(ExampleScrollItemData item)
 {
     return(_data.Remove(item));
 }
 public void Add(ExampleScrollItemData item)
 {
     _data.Add(item);
 }