예제 #1
0
 /// <summary>
 /// Determines whether the underlying table contains the given row.
 /// </summary>
 /// <param name="o"></param>
 /// <returns></returns>
 public bool Contains(TableRowElement o)
 {
     return(List.Contains(o));
 }
예제 #2
0
 /// <summary>
 /// Removes a specific row from table.
 /// </summary>
 /// <param name="o"></param>
 public void Remove(TableRowElement o)
 {
     base.List.Remove(o);
 }
예제 #3
0
 /// <summary>
 /// Adds a row to the underlying table.
 /// </summary>
 /// <param name="o"></param>
 public void Add(TableRowElement o)
 {
     base.List.Add(o);
 }