Package org.apache.poi.ss.usermodel

Examples of org.apache.poi.ss.usermodel.FontCharset


     *
     * @param charset - charset
     * @see FontCharset
     */
    public void setCharSet(int charset) {
        FontCharset fontCharset = FontCharset.valueOf(charset);
        if(fontCharset != null) {
           setCharSet(fontCharset);
        } else {
           throw new POIXMLException("Attention: an attempt to set a type of unknow charset and charset");
        }
View Full Code Here

TOP

Related Classes of org.apache.poi.ss.usermodel.FontCharset

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.