Example #1
0
 private void SetLastUnknownCellToLastPossibleValue()
 {
     if (CountUnknowns == 1)
     {
         SetValue.Of((IEditableCell)FirstUnknownCell).To(FirstPossibleValue);
     }
 }
Example #2
0
 public CellValueSetter SetValueOfCell(int oneBasedRowIndex, int oneBasedColIndex)
 {
     return(SetValue.Of(new NullableCell()));
 }
Example #3
0
 public CellValueSetter SetValueOfCell(int oneBasedRowIndex, int oneBasedColIndex)
 {
     return(SetValue.Of((IEditableCell)Row(oneBasedRowIndex).Cell(oneBasedColIndex)));
 }
Example #4
0
        public CellValueSetter SetValueOfCell(int oneBasedCellIndex)
        {
            //ToDo: add parameter check (plus adequate errorhandling)

            return(SetValue.Of((IEditableCell)Cell(oneBasedCellIndex)));
        }