Beispiel #1
0
 public virtual object GetFormattedValue(UIElementDataListRowEntity row, UIElementDataListRowCellEntity cell)
 {
     return(cell.Value);
 }
 public virtual void Remove(UIElementDataListRowCellEntity value)
 {
     List.Remove(value);
 }
 public void Insert(int index, UIElementDataListRowCellEntity value)
 {
     List.Insert(index, value);
 }
 public int IndexOf(UIElementDataListRowCellEntity value)
 {
     return(List.IndexOf(value));
 }
 public bool Contains(UIElementDataListRowCellEntity value)
 {
     return(List.Contains(value));
 }
 public virtual int Add(UIElementDataListRowCellEntity value)
 {
     return(List.Add(value));
 }