CellFormatValue

CellFormatValue

Overview

CellFormatValue is a class in Aspose.Cells FOSS for Java.

Inner class representing cell format value.

This class provides 13 methods for working with CellFormatValue objects in Java programs. Available methods include: CellFormatValue, getAlignment, getBorderId, getFillId, getFontId, getNumFmtId, getProtection, setAlignment, setBorderId, setFillId, setFontId, setNumFmtId, and 1 additional methods. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: alignment, borderId, fillId, fontId, numFmtId, protection.

Properties

NameTypeAccessDescription
numFmtIdintReadReturns the num fmt id.
fontIdintReadReturns the font id.
fillIdintReadReturns the fill id.
borderIdintReadReturns the border id.
alignmentAlignmentValueReadReturns the alignment.
protectionProtectionValueReadReturns the protection.

Methods

SignatureDescription
CellFormatValue()Initializes a new CellFormatValue instance.
getNumFmtId()intReturns the num fmt id.
setNumFmtId(numFmtId: int)Sets the num fmt id.
getFontId()intReturns the font id.
setFontId(fontId: int)Sets the font id.
getFillId()intReturns the fill id.
setFillId(fillId: int)Sets the fill id.
getBorderId()intReturns the border id.
setBorderId(borderId: int)Sets the border id.
getAlignment()AlignmentValueReturns the alignment.
setAlignment(alignment: AlignmentValue)Sets the alignment.
getProtection()ProtectionValueReturns the protection.
setProtection(protection: ProtectionValue)Sets the protection.

See Also