Uses of Class
org.apache.poi.ss.util.AreaReference
-
Packages that use AreaReference Package Description io.keikai.model.impl.sys.formula Keikai Spreadsheet Internal Book Model Implementation classes.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas.org.apache.poi.ss.formula.ptg The formula package contains binary PTG structures used in Formulasorg.apache.poi.ss.usermodel org.apache.poi.ss.util -
-
Uses of AreaReference in io.keikai.model.impl.sys.formula
Methods in io.keikai.model.impl.sys.formula with parameters of type AreaReference Modifier and Type Method Description Ptg
EvalBook. get3DReferencePtg(AreaReference area, SheetIdentifier sheet)
Ptg
ParsingBook. get3DReferencePtg(AreaReference areaRef, SheetIdentifier sheet)
-
Uses of AreaReference in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return AreaReference Modifier and Type Method Description AreaReference
HSSFCreationHelper. createAreaReference(String reference)
Creates an AreaReference.AreaReference
HSSFCreationHelper. createAreaReference(CellReference topLeft, CellReference bottomRight)
Creates an area ref from a pair of Cell References..Methods in org.apache.poi.hssf.usermodel with parameters of type AreaReference Modifier and Type Method Description Ptg
HSSFEvaluationWorkbook. get3DReferencePtg(AreaReference areaRef, SheetIdentifier sheet)
-
Uses of AreaReference in org.apache.poi.ss.formula
Methods in org.apache.poi.ss.formula with parameters of type AreaReference Modifier and Type Method Description Ptg
FormulaParsingWorkbook. get3DReferencePtg(AreaReference area, SheetIdentifier sheet)
Produce the appropriate Ptg for a 3d area reference -
Uses of AreaReference in org.apache.poi.ss.formula.ptg
Constructors in org.apache.poi.ss.formula.ptg with parameters of type AreaReference Constructor Description Area2DPtgBase(AreaReference ar)
Area3DPtg(AreaReference arearef, int externIdx)
Area3DPxg(int externalWorkbookNumber, SheetIdentifier sheetName, AreaReference arearef)
Area3DPxg(SheetIdentifier sheetName, AreaReference arearef)
AreaPtg(AreaReference arearef)
AreaPtgBase(AreaReference ar)
-
Uses of AreaReference in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return AreaReference Modifier and Type Method Description AreaReference
CreationHelper. createAreaReference(String reference)
Creates an AreaReference.AreaReference
CreationHelper. createAreaReference(CellReference topLeft, CellReference bottomRight)
Creates an area ref from a pair of Cell References.. -
Uses of AreaReference in org.apache.poi.ss.util
Methods in org.apache.poi.ss.util that return AreaReference Modifier and Type Method Description static AreaReference[]
AreaReference. generateContiguous(SpreadsheetVersion version, String reference)
Takes a non-contiguous area reference, and returns an array of contiguous area referencesstatic AreaReference
AreaReference. getWholeColumn(SpreadsheetVersion version, String start, String end)
Construct an AreaReference which spans one more columns.static AreaReference
AreaReference. getWholeRow(SpreadsheetVersion version, String start, String end)
Construct an AreaReference which spans one more rows
-