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; }
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); } }
public Column(FileDatatable parent) { m_parent = parent; }
internal void AddDatatable(FileDatatable table) { m_elements.Add(table); }