Examples of PdTextAltitude


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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The text-altitude property.
     */
    public int traitTextAltitude(final FObj fobj, final FoContext context) {
        final PdTextAltitude property = (PdTextAltitude) getProperty(
                FoProperty.TEXT_ALTITUDE);
        if (property == null) {
            return PdTextAltitude.getValueNoInstance(fobj, context);
        }
        return property.getValue(context, fobj);
    }
View Full Code Here

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

        }
        case TEXT_ALIGN_LAST: {
            return new PdTextAlignLast(fobj, propertyFullName, attributeValue);
        }
        case TEXT_ALTITUDE: {
            return new PdTextAltitude(fobj, propertyFullName, attributeValue);
        }
        case TEXT_DECORATION: {
            return new PdTextDecoration(fobj, propertyFullName, attributeValue);
        }
        case TEXT_DEPTH: {
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.