Esempio n. 1
0
 public static Addressable <MergeCell, ExcelAddress.CellRange> Lift(MergeCell item)
 {
     return(new Addressable <MergeCell, ExcelAddress.CellRange>(item, c => ExcelAddress.ParseCellRange(c.Reference)));
 }
Esempio n. 2
0
 public static Addressable <DefinedName, ExcelAddress.NamedRange> Lift(DefinedName item)
 {
     return(new Addressable <DefinedName, ExcelAddress.NamedRange>(item, c => ExcelAddress.ParseNamedRange(item.Name.Value, c.InnerText)));
 }
Esempio n. 3
0
 public static Addressable <Cell, ExcelAddress.Cell> Lift(Cell item)
 {
     return(new Addressable <Cell, ExcelAddress.Cell>(item, c => ExcelAddress.ParseCellAddress(c.CellReference)));
 }