Property Getters/Setters Summary | ||
---|---|---|
method | getCalculatedValue() | |
method | setCalculatedValue(value) | |
Gets or sets the calculated value for this function. | ||
method | getCell() | |
Gets the Cell object where the function is in. | ||
method | getCellColumn() | |
Gets the column index of the cell where the function is in. | ||
method | getCellRow() | |
Gets the row index of the cell where the function is in. | ||
method | getFunctionName() | |
Gets the function name to be calculated. | ||
method | getParamCount() | |
Gets the count of parameters | ||
method | getWorkbook() | |
Gets the Workbook object where the function is in. | ||
method | getWorksheet() | |
Gets the Worksheet object where the function is in. |
Method Summary | ||
---|---|---|
method | getParamText(index) | |
Gets the literal text of the parameter at given index. | ||
method | getParamValue(index) | |
Gets the represented value object of the parameter at given index. |
Property Getters/Setters Detail |
---|
getCalculatedValue/setCalculatedValue : Object | |
Object getCalculatedValue() / setCalculatedValue(value) |
getWorkbook : Workbook | |
Workbook getWorkbook() |
getWorksheet : Worksheet | |
Worksheet getWorksheet() |
getCellRow : int | |
int getCellRow() |
getCellColumn : int | |
int getCellColumn() |
getCell : Cell | |
Cell getCell() |
getFunctionName : String | |
String getFunctionName() |
getParamCount : int | |
int getParamCount() |
Method Detail |
---|
getParamValue | |
Object getParamValue(index) |
index: int
- index of the parameter(0 based)getParamText | |
String getParamText(index) |
index: int
- index of the parameter(0 based)