/** Creates a new hyphenation instance usable in <CODE>Chunk</CODE>.
 * @param lang the language ("en" for english, for example)
 * @param country the country ("GB" for Great-Britain or "none" for no country, for example)
 * @param leftMin the minimun number of letters before the hyphen
 * @param rightMin the minimun number of letters after the hyphen
 */
 public HyphenationAuto(string lang, string country, int leftMin, int rightMin)
 {
     hyphenator = new Hyphenator(lang, country, leftMin, rightMin);
 }