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.

Properties

NameTypeAccessDescription
valueObjectReadReturns the value.
kindCellValueKindReadReturns the kind.
formulaStringReadReturns the formula.
styleStyleValueReadReturns the style.
isExplicitlyStoredbooleanReadReturns the explicitly stored.

Methods

SignatureDescription
CellRecord()Initializes a new CellRecord instance.
getValue()ObjectReturns the value.
setValue(value: Object)Sets the value.
getKind()CellValueKindReturns the kind.
setKind(kind: CellValueKind)Sets the kind.
getFormula()StringReturns the formula.
setFormula(formula: String)Sets the formula.
getStyle()StyleValueReturns the style.
setStyle(style: StyleValue)Sets the style.
getIsExplicitlyStored()booleanReturns the explicitly stored.
setIsExplicitlyStored(isExplicitlyStored: boolean)Sets the explicitly stored.

See Also