Examples of PdFontStretch


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

     * issues.
     * @return The font-stretch property.
     */
    public org.axsl.font.Font.Stretch getFontStretch(final FObj fobj,
            final FoContext context) {
        final PdFontStretch property = (PdFontStretch) getProperty(
                FoProperty.FONT_STRETCH);
        if (property != null) {
            return property.getValue(fobj);
        }
        // Check the shorthand.
        final PdFont fontProperty = (PdFont) getProperty(FoProperty.FONT);
        if (fontProperty != null) {
            /*
 
View Full Code Here

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

        }
        case FONT_SIZE_ADJUST: {
            return new PdFontSizeAdjust(fobj, propertyFullName, attributeValue);
        }
        case FONT_STRETCH: {
            return new PdFontStretch(fobj, propertyFullName, attributeValue);
        }
        case FONT_STYLE: {
            return new PdFontStyle(fobj, propertyFullName, attributeValue);
        }
        case FONT_VARIANT: {
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.