Examples of PdLetterValue


Examples of org.foray.fotree.fo.prop.PdLetterValue

        }
        case LETTER_SPACING: {
            return new PdLetterSpacing(fobj, propertyFullName, attributeValue);
        }
        case LETTER_VALUE: {
            return new PdLetterValue(fobj, propertyFullName, attributeValue);
        }
        case LINE_HEIGHT: {
            return new PdLineHeight(fobj, propertyFullName, attributeValue);
        }
        case LINE_HEIGHT_SHIFT_ADJUSTMENT: {
View Full Code Here

Examples of org.foray.fotree.fo.prop.PdLetterValue

    /**
     * Returns the letter-value property.
     * @return The letter-value property.
     */
    public FoValue getLetterValue() {
        final PdLetterValue property = (PdLetterValue) getProperty(
                FoProperty.LETTER_VALUE);
        if (property != null) {
            return property.getValue();
        }
        return PdLetterValue.getValueNoInstance();
    }
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.