예제 #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;
 }
예제 #2
0
 public bool Contains(PlotTableBase value)
 {
     return(base.List.Contains(value));
 }
예제 #3
0
 public int IndexOf(PlotTableBase value)
 {
     return(base.List.IndexOf(value));
 }
예제 #4
0
 public void Remove(PlotTableBase value)
 {
     base.List.Remove(value);
 }
예제 #5
0
 public void Insert(int index, PlotTableBase value)
 {
     base.List.Insert(index, value);
 }
예제 #6
0
 public int Add(PlotTableBase value)
 {
     return(base.List.Add(value));
 }