Interface IFont
public interface IFont
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
float
getSize()
boolean
isBold()
boolean
isItalic()
boolean
boolean
void
setBold
(boolean isBold) void
setItalic
(boolean isItalic) void
void
setSize
(float size) void
setStrikeThrough
(boolean isStrikeThrough) void
setUnderline
(boolean isUnderline)
-
Method Details
-
isBold
boolean isBold() -
setBold
void setBold(boolean isBold) -
isItalic
boolean isItalic() -
setItalic
void setItalic(boolean isItalic) -
isUnderline
boolean isUnderline() -
setUnderline
void setUnderline(boolean isUnderline) -
isStrikeThrough
boolean isStrikeThrough() -
setStrikeThrough
void setStrikeThrough(boolean isStrikeThrough) -
getName
String getName() -
setName
-
getSize
float getSize() -
setSize
void setSize(float size)
-