Package io.keikai.api.model
Interface EditableFont
-
- All Superinterfaces:
Font
- All Known Implementing Classes:
EditableFontImpl
@Deprecated public interface EditableFont extends Font
Deprecated.As if release 5.3.0, replaced byRange.CellStyleHelper.builder(CellStyle)
to build an immutable fontThis interface allows you to change a cell's font.- Since:
- 3.0.0
- Author:
- dennis
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.keikai.api.model.Font
Font.Boldweight, Font.TypeOffset, Font.Underline
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
setBoldweight(Font.Boldweight boldweight)
Deprecated.void
setColor(Color color)
Deprecated.void
setFontHeight(int height)
Deprecated.void
setFontHeightInPoint(int point)
Deprecated.void
setFontName(String fontName)
Deprecated.Set the font name of cells.void
setItalic(boolean italic)
Deprecated.void
setStrikeout(boolean strikeout)
Deprecated.void
setUnderline(Font.Underline underline)
Deprecated.-
Methods inherited from interface io.keikai.api.model.Font
getBoldweight, getColor, getFontHeightInPoint, getFontName, getTypeOffset, getUnderline, isItalic, isStrikeout
-
-
-
-
Method Detail
-
setFontName
void setFontName(String fontName)
Deprecated.Set the font name of cells.- Parameters:
fontName
- font's name, ,e.g "Calibri"
-
setBoldweight
void setBoldweight(Font.Boldweight boldweight)
Deprecated.
-
setItalic
void setItalic(boolean italic)
Deprecated.
-
setStrikeout
void setStrikeout(boolean strikeout)
Deprecated.
-
setUnderline
void setUnderline(Font.Underline underline)
Deprecated.
-
setFontHeight
void setFontHeight(int height)
Deprecated.
-
setFontHeightInPoint
void setFontHeightInPoint(int point)
Deprecated.
-
setColor
void setColor(Color color)
Deprecated.
-
-