CellRecord
Overview
CellRecord is a class in Aspose.Cells FOSS for Java.
Represents a cell record in the Excel file.
This class provides 11 methods for working with CellRecord objects in Java programs.
Available methods include: CellRecord, getFormula, getIsExplicitlyStored, getKind, getStyle, getValue, setFormula, setIsExplicitlyStored, setKind, setStyle, setValue.
All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package.
Properties: formula, isExplicitlyStored, kind, style, value.
Description
CellRecord is a class in the Aspose.Cells FOSS library for Java that exposes 10 methods and 5 properties for programmatic use.
Core capabilities include: object; cellvaluekind; string. These operations enable developers to integrate cellrecord functionality directly into Java applications.
The class also provides the value property (returns the value), the kind property (returns the kind), the formula property (returns the formula).
Instances are created through a single constructor that initializes the object with default values.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
value | Object | Read | Returns the value. |
kind | CellValueKind | Read | Returns the kind. |
formula | String | Read | Returns the formula. |
style | StyleValue | Read | Returns the style. |
isExplicitlyStored | boolean | Read | Returns the explicitly stored. |
Methods
| Signature | Description |
|---|---|
CellRecord() | Initializes a new CellRecord instance. |
getValue() → Object | Returns the value. |
setValue(value: Object) | Sets the value. |
getKind() → CellValueKind | Returns the kind. |
setKind(kind: CellValueKind) | Sets the kind. |
getFormula() → String | Returns the formula. |
setFormula(formula: String) | Sets the formula. |
getStyle() → StyleValue | Returns the style. |
setStyle(style: StyleValue) | Sets the style. |
getIsExplicitlyStored() → boolean | Returns the explicitly stored. |
setIsExplicitlyStored(isExplicitlyStored: boolean) | Sets the explicitly stored. |