| |
|
| com.sun.perseus.j2d.TextProperties
TextProperties | public interface TextProperties (Code) | | version: $Id: TextProperties.java,v 1.2 2006/04/21 06:35:09 st125089 Exp $ |
FONT_STRETCH_CONDENSED | int FONT_STRETCH_CONDENSED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_EXPANDED | int FONT_STRETCH_EXPANDED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_EXTRA_CONDENSED | int FONT_STRETCH_EXTRA_CONDENSED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_EXTRA_EXPANDED | int FONT_STRETCH_EXTRA_EXPANDED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_NORMAL | int FONT_STRETCH_NORMAL(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_SEMI_CONDENSED | int FONT_STRETCH_SEMI_CONDENSED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_SEMI_EXPANDED | int FONT_STRETCH_SEMI_EXPANDED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_ULTRA_CONDENSED | int FONT_STRETCH_ULTRA_CONDENSED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STRETCH_ULTRA_EXPANDED | int FONT_STRETCH_ULTRA_EXPANDED(Code) | | Refer to the CSS 2 specification for a definition of the
font-strech values
|
FONT_STYLE_ITALIC | int FONT_STYLE_ITALIC(Code) | | Refer to the CSS 2 specification for a definition of the
various font-styles
|
FONT_STYLE_NORMAL | int FONT_STYLE_NORMAL(Code) | | Refer to the CSS 2 specification for a definition of the
various font-styles
|
FONT_STYLE_OBLIQUE | int FONT_STYLE_OBLIQUE(Code) | | Refer to the CSS 2 specification for a definition of the
various font-styles
|
FONT_WEIGHT_100 | int FONT_WEIGHT_100(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_200 | int FONT_WEIGHT_200(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_300 | int FONT_WEIGHT_300(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_400 | int FONT_WEIGHT_400(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_500 | int FONT_WEIGHT_500(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_600 | int FONT_WEIGHT_600(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_700 | int FONT_WEIGHT_700(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_800 | int FONT_WEIGHT_800(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_900 | int FONT_WEIGHT_900(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_BOLD | int FONT_WEIGHT_BOLD(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
FONT_WEIGHT_NORMAL | int FONT_WEIGHT_NORMAL(Code) | | Refer to the CSS 2 specification for a definition of the
font-weights
|
INITIAL_FONT_FAMILY | String[] INITIAL_FONT_FAMILY(Code) | | Default font family array
|
INITIAL_FONT_SIZE | int INITIAL_FONT_SIZE(Code) | | Default font size value
|
INITIAL_FONT_STYLE | int INITIAL_FONT_STYLE(Code) | | By default, the font style is normal
|
INITIAL_FONT_WEIGHT | int INITIAL_FONT_WEIGHT(Code) | | By default, the font weight is normal
|
INITIAL_TEXT_ANCHOR | int INITIAL_TEXT_ANCHOR(Code) | | By default, text starts on the anchor point
|
TEXT_ANCHOR_END | int TEXT_ANCHOR_END(Code) | | Text is anchored about its end point
|
TEXT_ANCHOR_MIDDLE | int TEXT_ANCHOR_MIDDLE(Code) | | Text is anchored about its mid point
|
TEXT_ANCHOR_START | int TEXT_ANCHOR_START(Code) | | Text is anchored about its starting point
|
getFontFamily | String[] getFontFamily()(Code) | | the font family property |
getFontSize | float getFontSize()(Code) | | the font size property, a positive number |
getFontStyle | int getFontStyle()(Code) | | one of FONT_STYLE_NORMAL, FONT_STYLE_OBLIQUE, FONT_STYLE_ITALIC. |
getFontWeight | int getFontWeight()(Code) | | one of the FONT_WEIGHT_XXX values |
getTextAnchor | int getTextAnchor()(Code) | | one of TEXT_ANCHOR_START, TEXT_ANCHOR_END or TEXT_ANCHOR_MIDDLE |
setFontFamily | void setFontFamily(String[] fontFamily)(Code) | | Parameters: fontFamily - the new font family property value. The fontFamilydescribes the list of names to use during font matching. |
setFontSize | void setFontSize(float fontSize)(Code) | | Parameters: fontSize - the new font size property value. Should be a positivevalue. |
setFontStyle | void setFontStyle(int fontStyle)(Code) | | Parameters: fontStyle - the new font style property value. Should be one ofFONT_STYLE_NORMAL, FONT_STYLE_ITALIC, FONT_STYLE_OBLIQUE |
setFontWeight | void setFontWeight(int fontWeight)(Code) | | Parameters: fontWeight - the new font weight property value. Should be one of the FONT_WEIGHT_XXX values |
setTextAnchor | void setTextAnchor(int textAnchor)(Code) | | Parameters: textAnchor - the new text anchor property value. Should be oneof TEXT_ANCHOR_START, TEXT_ANCHOR_MIDDLE or TEXT_ANCHOR_MIDDLE. |
|
|
|