public class Cell
Example:
Workbook excel = new Workbook();
Cells cells = excel.getWorksheets().get(0).getCells();
//Put a string into a cell
Cell cell = cells.get(0, 0);
cell.putValue("Hello");
String first = cell.getStringValue();
//Put an integer into a cell
cell = cells.get("B1");
cell.putValue(12);
int second = cell.getIntValue();
//Put a double into a cell
cell = cells.get(0, 2);
cell.putValue(-1.234);
double third = cell.getDoubleValue();
//Put a formula into a cell
cell = cells.get("D1");
cell.setFormula("=B1 + C1");
//Put a combined formula: "sum(average(b1,c1), b1)" to cell at b2
cell = cells.get("b2");
cell.setFormula("=sum(average(b1,c1), b1)");
//Set style of a cell
Style style = cell.getStyle();
//Set background color
style.setBackgroundColor(Color.getYellow());
//Set format of a cell
style.getFont().setName("Courier New");
style.setVerticalAlignment(TextAlignmentType.TOP);
cell.setStyle(style);
Property Getters/Setters Summary | ||
---|---|---|
boolean | getBoolValue() | |
Gets the boolean value contained in the cell.
|
||
int | getColumn() | |
Gets column number (zero based) of the cell.
|
||
boolean | containsExternalLink() | |
Indicates whether this cell contains an external link.
Only applies when the cell is a formula cell.
|
||
com.aspose.cells.DateTime | getDateTimeValue() | |
Gets the DateTime value contained in the cell.
|
||
java.lang.String | getDisplayStringValue() | |
Gets the formatted string value of this cell.
|
||
double | getDoubleValue() | |
Gets the double value contained in the cell.
|
||
float | getFloatValue() | |
Gets the float value contained in the cell.
|
||
java.lang.String | getFormula() | |
void | setFormula(java.lang.Stringvalue) | |
Gets or sets a formula of the |
||
java.lang.String | getFormulaLocal() | |
void | setFormulaLocal(java.lang.Stringvalue) | |
Get the locale formatted formula of the cell. | ||
java.lang.String | getHtmlString() | |
void | setHtmlString(java.lang.Stringvalue) | |
Gets and sets the html string which contains data and some formats in this cell. | ||
int | getIntValue() | |
Gets the integer value contained in the cell.
|
||
boolean | isArrayFormula() | |
Indicates whether the cell formula is an array formula.
|
||
boolean | isArrayHeader() | |
Inidicates the cell's formula is and array formula
and it is the first cell of the array.
|
||
boolean | isErrorValue() | |
Checks if a formula can properly evaluate a result.
|
||
boolean | isFormula() | |
Represents if the specified cell contains formula.
|
||
boolean | isInArray() | |
Indicates whether the cell formula is an array formula.
|
||
boolean | isInTable() | |
Indicates whether this cell is part of table formula.
|
||
boolean | isMerged() | |
Checks if a cell is part of a merged range or not.
|
||
boolean | isSharedFormula() | |
Indicates whether the cell formula is part of shared formula.
|
||
boolean | isStyleSet() | |
Indicates if the cell's style is set. If return false, it means this cell has a default cell format.
|
||
boolean | isTableFormula() | |
Indicates whether this cell is part of table formula.
|
||
java.lang.String | getName() | |
Gets the name of the cell.
|
||
int | getNumberCategoryType() | |
Represents the category type of this cell's number formatting.
The value of the property is NumberCategoryType integer constant. |
||
java.lang.String | getR1C1Formula() | |
void | setR1C1Formula(java.lang.Stringvalue) | |
Gets or sets a R1C1 formula of the |
||
int | getRow() | |
Gets row number (zero based) of the cell.
|
||
int | getSharedStyleIndex() | |
Gets cell's shared style index in the style pool.
|
||
java.lang.String | getStringValue() | |
Gets the string value contained in the cell. If the type of this cell is string, then return the string value itself.
For other cell types, the formatted string value (formatted with the specified style of this cell) will be returned.
The formatted cell value is same with what you can get from excel when copying a cell as text(such as
copying cell to text editor or exporting to csv).
|
||
java.lang.String | getStringValueWithoutFormat() | |
Gets cell's value as string without any format.
|
||
int | getType() | |
Represents cell value type.
The value of the property is CellValueType integer constant. |
||
java.lang.Object | getValue() | |
void | setValue(java.lang.Objectvalue) | |
Gets the value contained in this cell. | ||
Worksheet | getWorksheet() | |
Gets the parent worksheet.
|
Method Summary | ||
---|---|---|
void | calculate(boolean ignoreError, ICustomFunction customFunction) | |
Calcaulate the formula of the cell.
|
||
void | calculate(CalculationOptions options) | |
Calcaulate the formula of the cell.
|
||
FontSetting | characters(int startIndex, int length) | |
Returns a Characters object that represents a range of characters within the cell text.
|
||
void | copy(Cell cell) | |
Copies data from a source cell.
|
||
boolean | equals(Cell cell) | |
Checks whether this object refers to the same cell with another cell object.
|
||
boolean | equals(java.lang.Object obj) | |
Checks whether this object refers to the same cell with another.
|
||
CellArea | getArrayRange() | |
Gets the array range if the cell's formula is an array formula.
|
||
com.aspose.cells.FontSetting[] | getCharacters() | |
Returns all Characters objects
that represents a range of characters within the cell text.
|
||
com.aspose.cells.FontSetting[] | getCharacters(boolean flag) | |
Returns all Characters objects
that represents a range of characters within the cell text.
|
||
ConditionalFormattingResult | getConditionalFormattingResult() | |
Get the result of the conditional formatting.
|
||
com.aspose.cells.Cell[] | getDependents(boolean isAll) | |
Get all cells which refer to the specific cell.
|
||
Style | getDisplayStyle() | |
Gets the display style of the cell.
If the cell is conditional formatted, the display style is not same as the cell.GetStyle().
|
||
Style | getDisplayStyle(boolean includeMergedBorders) | |
Gets the display style of the cell.
If the cell is conditional formatted, the display style is not same as the cell.GetStyle().
|
||
com.aspose.cells.FormatConditionCollection[] | getFormatConditions() | |
Gets format conditions which applies to this cell.
|
||
java.lang.String | getFormula(boolean isR1C1, boolean isLocal) | |
Get the formula of this cell.
|
||
int | getHeightOfValue() | |
Gets the height of the value in unit of pixels.
|
||
java.lang.String | getHtmlString(boolean html5) | |
Gets the html string which contains data and some formats in this cell.
|
||
java.util.Iterator | getLeafs() | |
Get all cells which will be updated when this cell is modified.
This method can only work after calling Workbook.CalculateFormula.
|
||
Range | getMergedRange() | |
Returns a |
||
ReferredAreaCollection | getPrecedents() | |
Gets all cells or ranges which this cell's formula depends on.
|
||
java.lang.String | getStringValue(int formatStrategy) | |
Gets the string value by specific formatted strategy.
|
||
Style | getStyle() | |
Gets the cell style.
|
||
Style | getStyle(boolean checkBorders) | |
If checkBorders is true, check whether other cells' borders will effect the style of this cell.
|
||
ListObject | getTable() | |
Gets the table which contains this cell.
|
||
Validation | getValidation() | |
Gets the validation applied to this cell.
|
||
boolean | getValidationValue() | |
Gets the value of validation which applied to this cell.
|
||
int | getWidthOfValue() | |
Gets the width of the value in unit of pixels.
|
||
int | hashCode() | |
Serves as a hash function for a particular type.
|
||
boolean | isRichText() | |
Indicates whether the cell string value is a rich text.
|
||
void | putValue(boolean boolValue) | |
Puts an boolean value into the cell.
|
||
void | putValue(com.aspose.cells.DateTime dateTime) | |
Puts a DateTime value into the cell.
|
||
void | putValue(double doubleValue) | |
Puts a double value into the cell.
|
||
void | putValue(int intValue) | |
Puts an integer value into the cell.
|
||
void | putValue(java.lang.Object objectValue) | |
Puts an object value into the cell.
|
||
void | putValue(java.lang.String stringValue) | |
Puts a string value into the cell.
|
||
void | putValue(java.lang.String stringValue, boolean isConverted) | |
Puts a string value into the cell and converts the value to other data type if appropriate.
|
||
void | putValue(java.lang.String stringValue, boolean isConverted, boolean setStyle) | |
Puts a value into the cell, if appropriate the value will be converted to other data type and cell's number format will be reset.
|
||
void | removeArrayFormula(boolean leaveNormalFormula) | |
Remove array formula.
|
||
void | setAddInFormula(java.lang.String addInFileName, java.lang.String addInFunction) | |
Sets an Add-In formula to the cell.
|
||
void | setArrayFormula(java.lang.String arrayFormula, int rowNumber, int columnNumber) | |
Sets an array formula to a range of cells.
|
||
void | setArrayFormula(java.lang.String arrayFormula, int rowNumber, int columnNumber, boolean isR1C1, boolean isLocal) | |
Sets an array formula to a range of cells.
|
||
void | setArrayFormula(java.lang.String arrayFormula, int rowNumber, int columnNumber, FormulaParseOptions options) | |
Sets an array formula to a range of cells.
|
||
void | setCharacters(com.aspose.cells.FontSetting[] characters) | |
Sets rich text format of the cell.
|
||
void | setFormula(java.lang.String formula, boolean isR1C1, boolean isLocal, java.lang.Object value) | |
Set the formula and the value of the formula.
|
||
void | setFormula(java.lang.String formula, FormulaParseOptions options, java.lang.Object value) | |
Set the formula and the value of the formula.
|
||
void | setFormula(java.lang.String formula, java.lang.Object value) | |
Set the formula and the value of the formula.
|
||
void | setSharedFormula(java.lang.String sharedFormula, int rowNumber, int columnNumber) | |
Sets a formula to a range of cells.
|
||
void | setSharedFormula(java.lang.String sharedFormula, int rowNumber, int columnNumber, boolean isR1C1, boolean isLocal) | |
Sets a formula to a range of cells.
|
||
void | setSharedFormula(java.lang.String sharedFormula, int rowNumber, int columnNumber, FormulaParseOptions options) | |
Sets a formula to a range of cells.
|
||
void | setStyle(Style style) | |
Sets the cell style.
|
||
void | setStyle(Style style, boolean explicitFlag) | |
Apply the cell style.
|
||
void | setStyle(Style style, StyleFlag flag) | |
Apply the cell style.
|
||
java.lang.String | toString() | |
Returns a string represents the current Cell object.
|
public Worksheet getWorksheet()
public com.aspose.cells.DateTime getDateTimeValue()
public int getRow()
public int getColumn()
public boolean isFormula()
public int getType()
public java.lang.String getName()
public boolean isErrorValue()
public java.lang.String getStringValue()
public java.lang.String getStringValueWithoutFormat()
public int getNumberCategoryType()
public java.lang.String getDisplayStringValue()
public int getIntValue()
public double getDoubleValue()
public float getFloatValue()
public boolean getBoolValue()
public int getSharedStyleIndex()
public java.lang.String getFormula() / public void setFormula(java.lang.String value)
Example:
Workbook excel = new Workbook(); Cells cells = excel.getWorksheets().get(0).getCells(); cells.get("B6").setFormula("=SUM(B2:B5, E1) + sheet2!A1");
public java.lang.String getFormulaLocal() / public void setFormulaLocal(java.lang.String value)
public java.lang.String getR1C1Formula() / public void setR1C1Formula(java.lang.String value)
public boolean containsExternalLink()
public boolean isArrayHeader()
public boolean isArrayFormula()
public boolean isInArray()
public boolean isSharedFormula()
public boolean isTableFormula()
public boolean isInTable()
public java.lang.Object getValue() / public void setValue(java.lang.Object value)
null,
Boolean,
DateTime,
Double,
Integer
String.
For int value, it may be returned as an Integer object or a Double object. And there is no guarantee that the returned value will be kept as the same object type always.public boolean isStyleSet()
public boolean isMerged()
public java.lang.String getHtmlString() / public void setHtmlString(java.lang.String value)
public void setArrayFormula(java.lang.String arrayFormula, int rowNumber, int columnNumber)
arrayFormula
- Array formula.rowNumber
- Number of rows to populate result of the array formula.columnNumber
- Number of columns to populate result of the array formula.public void setSharedFormula(java.lang.String sharedFormula, int rowNumber, int columnNumber)
sharedFormula
- Shared formula.rowNumber
- Number of rows to populate the formula.columnNumber
- Number of columns to populate the formula.public void removeArrayFormula(boolean leaveNormalFormula)
leaveNormalFormula
- True represents converting the array formula to normal formula.public void setAddInFormula(java.lang.String addInFileName, java.lang.String addInFunction)
addInFileName
- Add-In file name.addInFunction
- Add-In function name.Example:
cells.get("h11").setAddInFormula("HRVSTTRK.xla", "=pct_overcut(F3:G3)"); cells.get("h12").setAddInFormula("HRVSTTRK.xla", "=pct_overcut()");
public void copy(Cell cell)
cell
- Source public FontSetting characters(int startIndex, int length)
startIndex
- The index of the start of the character.length
- The number of characters.Example:
excel.getWorksheets().get(0).getCells().get("A1").putValue("Helloworld"); excel.getWorksheets().get(0).getCells().get("A1").characters(5, 5).getFont().setBold(true); excel.getWorksheets().get(0).getCells().get("A1").characters(5, 5).getFont().setColor(Color.getBlue());
public boolean isRichText()
public com.aspose.cells.FontSetting[] getCharacters()
public com.aspose.cells.FontSetting[] getCharacters(boolean flag)
flag
- Indicates whether applying table style to the cell if the cell is in the table.public void setCharacters(com.aspose.cells.FontSetting[] characters)
characters
- All Characters objects.public Range getMergedRange()
public java.lang.String getHtmlString(boolean html5) throws java.lang.Exception
html5
- Indicates whether the value is compatible for html5public java.lang.String toString()
public boolean equals(java.lang.Object obj)
obj
- another objectpublic int hashCode()
public boolean equals(Cell cell)
cell
- another cell objectpublic ConditionalFormattingResult getConditionalFormattingResult()
public Validation getValidation()
public boolean getValidationValue()
public ListObject getTable()
public void calculate(CalculationOptions options)
options
- Options for calculationpublic void calculate(boolean ignoreError, ICustomFunction customFunction)
ignoreError
- Indicates if hide the error in calculating formulas.
The error may be unsupported function, external links, etc.customFunction
- The custom formula calculation functions to extend the calculation engine.public void putValue(boolean boolValue)
boolValue
- public void putValue(int intValue)
intValue
- Input valuepublic void putValue(double doubleValue)
doubleValue
- Input valuepublic void putValue(java.lang.String stringValue, boolean isConverted, boolean setStyle)
stringValue
- Input valueisConverted
- True: converted to other data type if appropriate.setStyle
- True: set the number format to cell's style when converting to other data typepublic void putValue(java.lang.String stringValue, boolean isConverted)
stringValue
- Input valueisConverted
- True: converted to other data type if appropriate.public void putValue(java.lang.String stringValue)
stringValue
- Input valuepublic void putValue(com.aspose.cells.DateTime dateTime)
dateTime
- Input valuepublic void putValue(java.lang.Object objectValue)
objectValue
- input valuepublic java.lang.String getStringValue(int formatStrategy)
formatStrategy
- A public int getWidthOfValue() throws java.lang.Exception
public int getHeightOfValue() throws java.lang.Exception
public Style getDisplayStyle()
public Style getDisplayStyle(boolean includeMergedBorders)
includeMergedBorders
- Indicates whether checking borders of the merged cells.
public com.aspose.cells.FormatConditionCollection[] getFormatConditions()
public Style getStyle()
public Style getStyle(boolean checkBorders)
checkBorders
- Check other cells' borderspublic void setStyle(Style style)
style
- The cell style.public void setStyle(Style style, boolean explicitFlag)
style
- The cell style.explicitFlag
- True, only overwriting formatting which is explicitly set.
public void setStyle(Style style, StyleFlag flag)
style
- The cell style.flag
- The style flag.public void setFormula(java.lang.String formula, java.lang.Object value)
formula
- The formula.value
- The value of the formula.public java.lang.String getFormula(boolean isR1C1, boolean isLocal)
isR1C1
- Whether the formula needs to be formatted as R1C1.isLocal
- Whether the formula needs to be formatted by locale.public void setFormula(java.lang.String formula, boolean isR1C1, boolean isLocal, java.lang.Object value)
formula
- The formula.isR1C1
- Whether the formula is R1C1 formula.isLocal
- Whether the formula is locale formatted.value
- The value of the formula.public void setFormula(java.lang.String formula, FormulaParseOptions options, java.lang.Object value)
formula
- The formula.options
- Options for parsing the formula.value
- The value of the formula.public void setArrayFormula(java.lang.String arrayFormula, int rowNumber, int columnNumber, boolean isR1C1, boolean isLocal)
arrayFormula
- Array formula.rowNumber
- Number of rows to populate result of the array formula.columnNumber
- Number of columns to populate result of the array formula.isR1C1
- whether the formula is R1C1 formulaisLocal
- whether the formula is locale formattedpublic void setArrayFormula(java.lang.String arrayFormula, int rowNumber, int columnNumber, FormulaParseOptions options)
arrayFormula
- Array formula.rowNumber
- Number of rows to populate result of the array formula.columnNumber
- Number of columns to populate result of the array formula.options
- Options for parsing the formula.public void setSharedFormula(java.lang.String sharedFormula, int rowNumber, int columnNumber, boolean isR1C1, boolean isLocal)
sharedFormula
- Shared formula.rowNumber
- Number of rows to populate the formula.columnNumber
- Number of columns to populate the formula.isR1C1
- whether the formula is R1C1 formulaisLocal
- whether the formula is locale formattedpublic void setSharedFormula(java.lang.String sharedFormula, int rowNumber, int columnNumber, FormulaParseOptions options)
sharedFormula
- Shared formula.rowNumber
- Number of rows to populate the formula.columnNumber
- Number of columns to populate the formula.options
- Options for parsing the formula.public ReferredAreaCollection getPrecedents()
Example:
Workbook workbook = new Workbook(); Cells cells = workbook.getWorksheets().get(0).getCells(); cells.get("A1").setFormula("= B1 + SUM(B1:B10) + [Book1.xls]Sheet1!A1"); ReferredAreaCollection areas = cells.get("A1").getPrecedents(); for (int i = 0; i < areas.getCount(); i++) { ReferredArea area = areas.get(i); StringBuilder stringBuilder = new StringBuilder(); if (area.isExternalLink()) { stringBuilder.append("["); stringBuilder.append(area.getExternalFileName()); stringBuilder.append("]"); } stringBuilder.append(area.getSheetName()); stringBuilder.append("!"); stringBuilder.append(CellsHelper.cellIndexToName(area.getStartRow(), area.getStartColumn())); if (area.isArea()) { stringBuilder.append(":"); stringBuilder.append(CellsHelper.cellIndexToName(area.getEndRow(), area.getEndColumn())); } System.out.println(stringBuilder.toString()); } workbook.save("C:\\Book2.xls");
public com.aspose.cells.Cell[] getDependents(boolean isAll)
isAll
- Indicates whether check other worksheetspublic java.util.Iterator getLeafs()
public CellArea getArrayRange()