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