Package org.zkoss.zss.model

Examples of org.zkoss.zss.model.FontUnderline


      }
      if (textColor != null) {
        sb.append("color:").append(textColor).append(";");
      }

      FontUnderline fontUnderline = format.getFontUnderline();
      boolean striketThrough = format.isFontStrikethrough();
      if (!striketThrough && fontUnderline != null) {
        if (fontUnderline.equals(FontUnderline.SINGLE) || fontUnderline.equals(FontUnderline.SINGLEA)) {
          sb.append("text-decoration:").append("underline;");
        } else if (fontUnderline.equals(FontUnderline.DOUBLE) || fontUnderline.equals(FontUnderline.DOUBLEA)) {

        }
      }

      if (striketThrough) {
View Full Code Here

TOP

Related Classes of org.zkoss.zss.model.FontUnderline

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.