namespace DelftTools.Controls { public class TableViewCell { public TableViewCell(int rowIndex, ITableViewColumn column) { RowIndex = rowIndex; Column = column; } /// /// Row index of the cell /// public int RowIndex { get; set; } /// /// Column of the cell /// public ITableViewColumn Column { get; set; } } }