iTextSharp.text.pdf.hyphenation.Hyphenator.Hyphenate C# (CSharp) Method

Hyphenate() public method

public Hyphenate ( String word ) : Hyphenation
word String
return Hyphenation
        public Hyphenation Hyphenate(String word) {
            if (hyphenTree == null) {
                return null;
            }
            return hyphenTree.Hyphenate(word, remainCharCount, pushCharCount);
        }
    }

Same methods

Hyphenator::Hyphenate ( String lang, String country, String word, int leftMin, int rightMin ) : Hyphenation
Hyphenator::Hyphenate ( String lang, String country, char word, int offset, int len, int leftMin, int rightMin ) : Hyphenation
Hyphenator::Hyphenate ( char word, int offset, int len ) : Hyphenation