ColumnRange(String s) {
int seppos = s.indexOf(":");
Assert.verify(seppos != -1);
String startcell = s.substring(0, seppos);
String endcell = s.substring(seppos + 1);
int columnFirst = CellReferenceHelper.getColumn(startcell);
int rowFirst = 0;
int columnLast = CellReferenceHelper.getColumn(endcell);
int rowLast = 0xffff;
boolean columnFirstRelative =
CellReferenceHelper.isColumnRelative(startcell);
boolean rowFirstRelative = false;
boolean columnLastRelative = CellReferenceHelper.isColumnRelative(endcell);
boolean rowLastRelative = false;
setRangeData(columnFirst, columnLast,
rowFirst, rowLast,
columnFirstRelative, columnLastRelative,
rowFirstRelative, rowLastRelative);
}
Constructor invoked when parsing a string formula Parameters:
s - the string to parse
|