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