Examples of underlineSize()


Examples of org.axsl.font.Font.underlineSize()

        final int endX = area.crOriginX() + area.crIpd();
        final Font font = area.getPrimaryFont().getFont();
        if (area.traitUnderlineScore()) {
            startY = getUnderlineYPosition(area);
            drawLine(startX, startY, endX, startY,
                    font.underlineSize(area.traitFontSize()),
                    RuleStyle.SOLID, area.traitUnderlineScoreColor());
        }
        if (area.traitOverlineScore()) {
            startY = getOverlineYPosition(area);
            drawLine(startX, startY, endX, startY,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.