Examples of PdVerticalAlign


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

        }
        case UNICODE_BIDI: {
            return new PdUnicodeBidi(fobj, propertyFullName, attributeValue);
        }
        case VERTICAL_ALIGN: {
            return new PdVerticalAlign(fobj, propertyFullName, attributeValue);
        }
        case VISIBILITY: {
            return new PdVisibility(fobj, propertyFullName, attributeValue);
        }
        case VOICE_FAMILY: {
View Full Code Here

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

        if (property != null) {
            return property.traitValue(context, fobj);
        }

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

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

                getProperty(FoProperty.ALIGNMENT_ADJUST);
        if (property != null) {
            return property.traitValueAmount(context, fobj, inlineContext);
        }
        /* Try the shorthand property. */
        final PdVerticalAlign va = (PdVerticalAlign) getProperty(FoProperty.VERTICAL_ALIGN);
        if (va != null) {
            return va.getAlignmentAdjust(fobj, context, inlineContext);
        }
        return PdAlignmentAdjust.traitValueNoInstance();
    }
View Full Code Here

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

                getProperty(FoProperty.BASELINE_SHIFT);
        if (property != null) {
            return property.traitValue(context, fobj);
        }
        /* Try the shorthand property. */
        final PdVerticalAlign va = (PdVerticalAlign) getProperty(FoProperty.VERTICAL_ALIGN);
        if (va != null) {
            return va.getBaselineShift(fobj, context);
        }
        return PdBaselineShift.traitValueNoInstance();
    }
View Full Code Here

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

                FoProperty.DOMINANT_BASELINE);
        if (property != null) {
            return property.traitValue(context, fobj);
        }
        /* Try the shorthand property. */
        final PdVerticalAlign va = (PdVerticalAlign) getProperty(FoProperty.VERTICAL_ALIGN);
        if (va != null) {
            return va.getDominantBaseline(fobj, context);
        }
        return PdDominantBaseline.traitValueNoInstance(fobj, context);
    }
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.