Example #1
0
 public CellValueSetter SetValueOfCell(int oneBasedRowIndex, int oneBasedColIndex)
 {
     return(SetValue.Of((IEditableCell)Row(oneBasedRowIndex).Cell(oneBasedColIndex)));
 }
Example #2
0
 public CellValueSetter SetValueOfCell(int oneBasedRowIndex, int oneBasedColIndex)
 {
     return(SetValue.Of(new NullableCell()));
 }
Example #3
0
        public CellValueSetter SetValueOfCell(int oneBasedCellIndex)
        {
            //ToDo: add parameter check (plus adequate errorhandling)

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