Catalogen

HSSFName @Cluster 1 (iname, namedatabeg, string)


JUniPrint.java

test that we get the same value as excel and , for

67. private HSSFName nameDataBeg;
1633.     AreaReference areaDataBeg = new AreaReference(nameDataBeg.getRefersToFormula());

ExcelUtils.java

returns the instance of a string with the of the given type , or null if none is the same style does not exist .

104. public static AreaReference getReferanceNameRange(HSSFName nameRange){
106.   return new AreaReference(nameRange.getRefersToFormula());

ExcelUtils.java

sets the

98. HSSFName nameRange =  wb.createName();
99. nameRange.setNameName(name);
100. nameRange.setRefersToFormula(refersToR1C1);

JUniPrintReportsEngine.java

sets the

93. HSSFName paramCellName = ExcelUtils.getNamedRange(wb, param.getKey());
95.   HSSFSheet paramCellSheet = wb.getSheet(paramCellName.getSheetName());
96.   AreaReference paramCellAreaRef = new AreaReference(paramCellName.getRefersToFormula());

ReportSheetImpl.java

sets the a number of the style of the that was a copy of the style table .

102. HSSFName nm = shTemplate.getWorkbook().getNameAt(i);
104. AreaReference aref = new AreaReference(nm.getRefersToFormula());
107. band.setName(nm.getNameName());

RangeConvertor.java

sets the

46. HSSFName aNamedRage = wb.getNameAt(namedRangeIdx);
49. AreaReference aref = new AreaReference(aNamedRage.getReference());
53. Range redRange = new Range(aNamedRage.getNameName());

JUniPrintReportsEngine.java

sets the

105. HSSFName nameDataBeg = ExcelUtils.getNamedRange(wb, dataBegFieldName);
107. String nameShData = nameDataBeg.getSheetName();
110. AreaReference areaDataBeg = new AreaReference(nameDataBeg.getRefersToFormula());

ExcelUtils.java

gets the value of the given paragraph textprop , add if required @ param propname the name of the paragraph

178. HSSFName iName = wb.getNameAt(i);
180.   String iNameName = iName.getNameName();
182.     String iShName = iName.getSheetName();

NamedRangeHSSFImpl.java

test that we get the same value as excel and , for

26. private HSSFName name;
34.     return name.getNameName();
38.     String sheetName = name.getSheetName();
39.     String formula = name.getRefersToFormula();