示例#1
0
文件: Sheet.cs 项目: babarnazmi/xlio
 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
文件: Range.cs 项目: babarnazmi/xlio
 public Range()
 {
     Cell1 = new Cell(); Cell2 = new Cell();
 }
示例#5
0
文件: Range.cs 项目: babarnazmi/xlio
 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();
 }