Methods Summary |
---|
public short | getColumn()returns the column index.
|
public org.apache.poi.hssf.record.formula.eval.ValueEval | getInnerValueEval()The (possibly evaluated) ValueEval contained
in this RefEval. eg. if cell A1 contains "test"
then in a formula referring to cell A1
the RefEval representing
A1 will return as the getInnerValueEval() the
object of concrete type StringEval
|
public short | getRow()returns the row index.
|
public boolean | isEvaluated()returns true if this RefEval contains an
evaluated value instead of a direct value.
eg. say cell A1 has the value: ="test"
Then the RefEval representing A1 will return
isEvaluated() equal to false. On the other
hand, say cell A1 has the value: =B1 and
B1 has the value "test", then the RefEval
representing A1 will return isEvaluated()
equal to true.
|