/// <summary> /// Determines whether [contains] [the specified value]. /// </summary> /// <param name="value">The value.</param> /// <returns> /// <c>true</c> if [contains] [the specified value]; otherwise, <c>false</c>. /// </returns> public bool Contains(AODL.Document.Content.Tables.Cell value) { return(base.List.Contains(value as object)); }
/// <summary> /// Removes the specified value. /// </summary> /// <param name="value">The value.</param> public void Remove(AODL.Document.Content.Tables.Cell value) { base.List.Remove(value as object); }
/// <summary> /// Inserts the specified index. /// </summary> /// <param name="index">The index.</param> /// <param name="value">The value.</param> public void Insert(int index, AODL.Document.Content.Tables.Cell value) { base.List.Insert(index, value as object); }
/// <summary> /// Adds the specified value. /// </summary> /// <param name="value">The value.</param> /// <returns></returns> public int Add(AODL.Document.Content.Tables.Cell value) { return(base.List.Add(value as object)); }