Пример #1
0
 public CellData this[Cell cell]
 {
     get { return data[cell.Row, cell.Col]; }
     set { data[cell.Row, cell.Col] = value; }
 }
Пример #2
0
 public SharedFormula(String formula, Range range, Cell origin)
 {
     this.Formula = formula;
     this.Range = range;
     this.Origin = origin;
 }
Пример #3
0
 public String GetCellFormula(Cell cell)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 public Range()
 {
     Cell1 = new Cell(); Cell2 = new Cell();
 }
Пример #5
0
 public bool Contains(Cell cell)
 {
     return Contains(cell.Row, cell.Col);
 }
Пример #6
0
 public CellDataPair(Cell cell, CellData data)
 {
     Cell = cell;
     Data = data;
 }
Пример #7
0
 public SheetRange this[Cell c1, Cell c2]
 {
     get { return new SheetRange(this, new Range { Cell1 = c1, Cell2 = c2 }); }
 }
Пример #8
0
 public Range(int r1, int c1, int r2, int c2)
 {
     Cell1 = new Cell(r1, c1);
     Cell2 = new Cell(r2, c2);
 }
Пример #9
0
 public Range(Cell cell1, Cell cell2)
 {
     Cell1 = cell1;
     Cell2 = cell2;
 }
Пример #10
0
 public static string Format(Cell cell1, Cell cell2)
 {
     return cell1.ToString() + ":" + cell1.ToString();
 }