Ejemplo n.º 1
0
 public IEnumerable <GridCellModel> ForEachRowCell(GridRowModel row)
 {
     return(this.CellsController.GetCellsForRow(row.ItemInfo.Slot));
 }
Ejemplo n.º 2
0
 public IEnumerable <GridCellModel> ForEachFrozenRowCell(GridRowModel row)
 {
     return(this.CellsController.GetCellsForRow(row.ItemInfo.Slot).Where(c => c.Column != null && c.Column.IsFrozen));
 }