public interface FontFormatting
Modifier and Type | Field and Description |
---|---|
static short |
SS_NONE
Escapement type - None
|
static short |
SS_SUB
Escapement type - Subscript
|
static short |
SS_SUPER
Escapement type - Superscript
|
static byte |
U_DOUBLE
Underline type - Double
|
static byte |
U_DOUBLE_ACCOUNTING
Underline type - Double Accounting
|
static byte |
U_NONE
Underline type - None
|
static byte |
U_SINGLE
Underline type - Single
|
static byte |
U_SINGLE_ACCOUNTING
Underline type - Single Accounting
|
Modifier and Type | Method and Description |
---|---|
short |
getEscapementType()
get the type of super or subscript for the font
|
short |
getFontColorIndex() |
int |
getFontHeight()
gets the height of the font in 1/20th point units
|
short |
getUnderlineType()
get the type of underlining for the font
|
boolean |
isBold()
get whether the font weight is set to bold or not
|
boolean |
isItalic() |
void |
resetFontStyle()
set font style options to default values (non-italic, non-bold)
|
void |
setEscapementType(short escapementType)
set the escapement type for the font
|
void |
setFontColorIndex(short color) |
void |
setFontHeight(int height)
Sets the height of the font in 1/20th point units
|
void |
setFontStyle(boolean italic,
boolean bold)
set font style options.
|
void |
setUnderlineType(short underlineType)
set the type of underlining type for the font
|
static final short SS_NONE
static final short SS_SUPER
static final short SS_SUB
static final byte U_NONE
static final byte U_SINGLE
static final byte U_DOUBLE
static final byte U_SINGLE_ACCOUNTING
static final byte U_DOUBLE_ACCOUNTING
short getEscapementType()
void setEscapementType(short escapementType)
short getFontColorIndex()
void setFontColorIndex(short color)
color
- font color indexint getFontHeight()
void setFontHeight(int height)
height
- the height in twips (in points/20)short getUnderlineType()
U_NONE
,
U_SINGLE
,
U_DOUBLE
,
U_SINGLE_ACCOUNTING
,
U_DOUBLE_ACCOUNTING
void setUnderlineType(short underlineType)
underlineType
- super or subscript optionU_NONE
,
U_SINGLE
,
U_DOUBLE
,
U_SINGLE_ACCOUNTING
,
U_DOUBLE_ACCOUNTING
boolean isBold()
boolean isItalic()
void setFontStyle(boolean italic, boolean bold)
italic
- - if true, set posture style to italic, otherwise to normalbold
- if true, set font weight to bold, otherwise to normalvoid resetFontStyle()
Copyright © 2005-2010 Potix Corporation. All Rights Reserved.