Apply() public méthode

public Apply ( Cell cell ) : void
cell Cell
Résultat void
Exemple #1
0
        public static Cell For(CellHandling cells, string key, Type type, CellModifications modifications, Fixture fixture)
        {
            var cell = new Cell(cells, key, type);

            modifications.Apply(cell);

            cell.readLists(cells, fixture);

            return(cell);
        }