A name operand
| Method from jxl.biff.formula.Name Detail: |
byte[] getBytes() {
byte[] data = new byte[6];
return data;
}
Gets the token representation of this item in RPN |
public void getString(StringBuffer buf) {
buf.append("[Name record not implemented]");
}
Abstract method implementation to get the string equivalent of this
token |
void handleImportedCellReferences() {
setInvalid();
}
If this formula was on an imported sheet, check that
cell references to another sheet are warned appropriately
Sets this formula to invalid |
public int read(byte[] data,
int pos) {
return 6;
}
Reads the ptg data from the array starting at the specified position |