public PlotTableCell(PlotTableBase table, PlotTableCellFormat cellFormat) { this.m_Table = table; this.m_TextLayout = cellFormat.TextLayout; this.I_AmbientOwner = cellFormat; this.m_ImageIndex = -1; }
public bool Contains(PlotTableBase value) { return(base.List.Contains(value)); }
public int IndexOf(PlotTableBase value) { return(base.List.IndexOf(value)); }
public void Remove(PlotTableBase value) { base.List.Remove(value); }
public void Insert(int index, PlotTableBase value) { base.List.Insert(index, value); }
public int Add(PlotTableBase value) { return(base.List.Add(value)); }