Examples of traitBorderSeparationBpd()


Examples of org.axsl.fo.fo.Table.traitBorderSeparationBpd()

     */
    public int getHeight(final FoContext context) {
        final TableArea tableArea = this.areaContainer.ancestorTableArea();
        final Table table = tableArea.traitGeneratedBy();
        return this.areaContainer.crBpd()
                + table.traitBorderSeparationBpd(context)
                - (this.node.traitBorderBeforeWidth(context)
                + this.node.traitBorderAfterWidth(context))
                / 2;
    }

View Full Code Here

Examples of org.foray.fotree.FObj.traitBorderSeparationBpd()

        final FObj parent = fobj.effectiveParent(context);
        if (parent == null) {
            return 0;
        }
        if (axis == RelativeAxis.BLOCK_PROGRESSION) {
            return parent.traitBorderSeparationBpd(context);
        }
        if (axis == RelativeAxis.INLINE_PROGRESSION) {
            return parent.traitBorderSeparationIpd(context);
        }
        throw Property.unexpectedInitialValueArgument(
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.