| com.lowagie.text.pdf.HyphenationEvent
All known Subclasses: com.lowagie.text.pdf.HyphenationAuto,
HyphenationEvent | public interface HyphenationEvent (Code) | | Called by Chunk to hyphenate a word.
author: Paulo Soares (psoares@consiste.pt) |
getHyphenSymbol | public String getHyphenSymbol()(Code) | | Gets the hyphen symbol.
the hyphen symbol |
getHyphenatedWordPost | public String getHyphenatedWordPost()(Code) | | Gets the second part of the hyphenated word. Must be called
after getHyphenatedWordPre() .
the second part of the hyphenated word |
getHyphenatedWordPre | public String getHyphenatedWordPre(String word, BaseFont font, float fontSize, float remainingWidth)(Code) | | Hyphenates a word and returns the first part of it. To get
the second part of the hyphenated word call getHyphenatedWordPost() .
Parameters: word - the word to hyphenate Parameters: font - the font used by this word Parameters: fontSize - the font size used by this word Parameters: remainingWidth - the width available to fit this word in the first part of the hyphenated word includingthe hyphen symbol, if any |
|
|