Examples of PdAlignmentBaseline


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

     * issues.
     * @return The alignment-baseline property.
     */
    public AlignmentBaseline traitAlignmentBaseline(final FObj fobj,
            final FoContext context) {
        final PdAlignmentBaseline property = (PdAlignmentBaseline)
                getProperty(FoProperty.ALIGNMENT_BASELINE);
        if (property != null) {
            return property.traitValue(context, fobj);
        }

        // Try the shorthand property.
        final PdVerticalAlign va = (PdVerticalAlign) getProperty(FoProperty.VERTICAL_ALIGN);
        if (va != null) {
View Full Code Here

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

        case ALIGNMENT_ADJUST: {
            return new PdAlignmentAdjust(fobj, propertyFullName,
                    attributeValue);
        }
        case ALIGNMENT_BASELINE: {
            return new PdAlignmentBaseline(fobj, propertyFullName,
                    attributeValue);
        }
        case ALLOWED_HEIGHT_SCALE: {
            return new PdAllowedHeightScale(fobj, propertyFullName,
                    attributeValue);
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.