Examples of traitTextAlign()


Examples of org.axsl.fo.fo.Block.traitTextAlign()

     * @return One of the following TraitEnumeration constants: START, END,
     * CENTER, JUSTIFY.
     */
    public TextAlign traitTextAlign() {
        final Block generatedBy = traitGeneratedBy();
        TextAlign textAlign = generatedBy.traitTextAlign(this);
        if (this.textAlignLastApplies()) {
            final TextAlignLast textAlignLast = generatedBy.traitTextAlignLast(
                    this);
            if (textAlignLast == TextAlignLast.RELATIVE) {
                if (textAlign == TextAlign.JUSTIFY) {
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.