com.aspose.cells.CalculationData.html Maven / Gradle / Ivy
CalculationData
com.aspose.cells
Class CalculationData
java.lang.Object
com.aspose.cells.CalculationData
public class CalculationData
- extends java.lang.Object
Property Getters/Setters Summary | ||
---|---|---|
java.lang.Object | getCalculatedValue() | |
void | setCalculatedValue(java.lang.Object) | |
Gets or sets the calculated value for this function. | ||
Cell | getCell() | |
Gets the Cell object where the function is in. | ||
int | getCellColumn() | |
Gets the column index of the cell where the function is in. | ||
int | getCellRow() | |
Gets the row index of the cell where the function is in. | ||
java.lang.String | getFunctionName() | |
Gets the function name to be calculated. | ||
int | getParamCount() | |
Gets the count of parameters | ||
Workbook | getWorkbook() | |
Gets the Workbook object where the function is in. | ||
Worksheet | getWorksheet() | |
Gets the Worksheet object where the function is in. |
Method Summary | ||
---|---|---|
java.lang.String | getParamText(int index) | |
Gets the literal text of the parameter at given index. | ||
java.lang.Object | getParamValue(int index) | |
Gets the represented value object of the parameter at given index. |
Property Getters/Setters Detail |
---|
getCalculatedValue/setCalculatedValue | |
public java.lang.Object getCalculatedValue() / public void setCalculatedValue(java.lang.Object value) |
Gets or sets the calculated value for this function. User should set this property in his custom calculation engine for those functions the engine supports, and the set value will be returned when getting this property later. The set value can be any value of those objects that can be set to a Cell(Cell.Value). And it can also be array of such kind of values, or a Range, Name, ReferredArea. Getting this property before setting will make the function be calculated by the default calculation engine of Aspose.Cells and the calculated value will be returned.
getWorkbook | |
public Workbook getWorkbook() |
Gets the Workbook object where the function is in.
getWorksheet | |
public Worksheet getWorksheet() |
Gets the Worksheet object where the function is in.
getCellRow | |
public int getCellRow() |
Gets the row index of the cell where the function is in.
getCellColumn | |
public int getCellColumn() |
Gets the column index of the cell where the function is in.
getCell | |
public Cell getCell() |
Gets the Cell object where the function is in.
getFunctionName | |
public java.lang.String getFunctionName() |
Gets the function name to be calculated.
getParamCount | |
public int getParamCount() |
Gets the count of parameters
Method Detail |
---|
getParamValue | |
public java.lang.Object getParamValue(int index) |
Gets the represented value object of the parameter at given index. - Parameters:
index
- index of the parameter(0 based)
- Returns:
- If the parameter is plain value, then returns the plain value. If the parameter is reference, then returns ReferredArea object. If the parameter references to multiple datasets, then returns array of objects.
getParamText | |
public java.lang.String getParamText(int index) |
Gets the literal text of the parameter at given index. - Parameters:
index
- index of the parameter(0 based)
- Returns:
- literal text of the parameter
See Also:
Aspose.Cells Documentation - the home page for the Aspose.Cells Product Documentation.
Aspose.Cells Support Forum - our preferred method of support.