Package org.apache.fop.fo.properties

Examples of org.apache.fop.fo.properties.TableColLength


        TableColumn implicitColumn = new TableColumn(this, true);
        PropertyList pList = new StaticPropertyList(
                                implicitColumn, this.propList);
        pList.setWritingMode();
        implicitColumn.bind(pList);
        implicitColumn.setColumnWidth(new TableColLength(1.0, implicitColumn));
        implicitColumn.setColumnNumber(colNumber);
        if (!isSeparateBorderModel()) {
            implicitColumn.setCollapsedBorders(collapsingBorderModel); // TODO
        }
        return implicitColumn;
View Full Code Here


        if (!pInfo.getPropertyList().getFObj().getName().equals("fo:table-column")) {
            throw new PropertyException("proportional-column-width function "
                    + "may only be used on table-column FO");
        }
        // Check if table-layout is "fixed"...
        return new TableColLength(d.doubleValue(), pInfo.getFO());
    }
View Full Code Here

        if (!pInfo.getPropertyList().getFObj().getName().equals("fo:table-column")) {
            throw new PropertyException("proportional-column-width function "
                    + "may only be used on table-column FO");
        }
        // Check if table-layout is "fixed"...
        return new TableColLength(d.doubleValue(), pInfo.getFO());
    }
View Full Code Here

TOP

Related Classes of org.apache.fop.fo.properties.TableColLength

Copyright © 2018 www.massapicom. 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.