Examples of inlineIsFauxSmallCaps()


Examples of org.axsl.text.line.LineText.inlineIsFauxSmallCaps()

            final LineText lineText = (LineText) lineContent;
            final CharSequence text = lineText.inlineText();
            if (text.length() < 1) {
                return -1;
            }
            if (lineText.inlineIsFauxSmallCaps()) {
                /* If this is small caps, break the text up into pieces,
                 * starting a new piece when the case of the text changes. */
                int subsetStart = start;
                this.setInLowerCase(isLowerCase(text.charAt(start)));
                for (int i = start; i < end; i++) {
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.