Example #1
0
 public Row(FileDatatable parent, long cellCount)
 {
     m_parent = parent;
     for (long i = 0L; i < cellCount; i++)
     {
         m_cells.Add(new Cell(this));
     }
     m_headerText = null;
 }
Example #2
0
 public Row(FileDatatable parent, string rowStart, IEnumerable <Tuple <string, TypeReference, object> > cells)
 {
     m_parent     = parent;
     m_headerText = rowStart;
     foreach (var c in cells)
     {
         var cell = new Cell(this);
         cell.CellText        = c.Item1;
         cell.DecodedDataType = c.Item2;
         cell.DirectValue     = c.Item3;
         m_cells.Add(cell);
     }
 }
Example #3
0
 public Column(FileDatatable parent)
 {
     m_parent = parent;
 }
Example #4
0
 internal void AddDatatable(FileDatatable table)
 {
     m_elements.Add(table);
 }