Esempio n. 1
0
 /// <summary>
 /// Determines whether the cel exists in the collection.
 /// </summary>
 /// <param name="o"></param>
 /// <returns></returns>
 public bool Contains(TableCellElement o)
 {
     return(List.Contains(o));
 }
Esempio n. 2
0
 /// <summary>
 /// Removes a cell.
 /// </summary>
 /// <remarks>
 /// Improper usage could result in wrong table rendering and unpredictable results.
 /// </remarks>
 /// <param name="o"></param>
 public void Remove(TableCellElement o)
 {
     base.List.Remove(o);
 }
Esempio n. 3
0
 /// <summary>
 /// Adds a cell.
 /// </summary>
 /// <param name="o"></param>
 public void Add(TableCellElement o)
 {
     base.List.Add(o);
 }