public CellData this[Cell cell] { get { return data[cell.Row, cell.Col]; } set { data[cell.Row, cell.Col] = value; } }
public SharedFormula(String formula, Range range, Cell origin) { this.Formula = formula; this.Range = range; this.Origin = origin; }
public String GetCellFormula(Cell cell) { throw new NotImplementedException(); }
public Range() { Cell1 = new Cell(); Cell2 = new Cell(); }
public bool Contains(Cell cell) { return Contains(cell.Row, cell.Col); }
public CellDataPair(Cell cell, CellData data) { Cell = cell; Data = data; }
public SheetRange this[Cell c1, Cell c2] { get { return new SheetRange(this, new Range { Cell1 = c1, Cell2 = c2 }); } }
public Range(int r1, int c1, int r2, int c2) { Cell1 = new Cell(r1, c1); Cell2 = new Cell(r2, c2); }
public Range(Cell cell1, Cell cell2) { Cell1 = cell1; Cell2 = cell2; }
public static string Format(Cell cell1, Cell cell2) { return cell1.ToString() + ":" + cell1.ToString(); }