Examples of traitColumnWidthTableUnits()


Examples of org.axsl.fo.fo.TableColumn.traitColumnWidthTableUnits()

            final TableColumn column = table.getTableColumns()[i];
            if (column == null) {
                getLogger().warn("No table-column specification for column " +
                         (i + 1) + ".");
            } else {
                final double tu = column.traitColumnWidthTableUnits();
                /* Keep track of minimum number of proportional units in any
                 * column which has only proportional units. */
                if (tu > 0 && tu < tuMin
                        && column.traitColumnWidth(this) == 0) {
                    tuMin = tu;
View Full Code Here

Examples of org.axsl.fo.fo.TableColumn.traitColumnWidthTableUnits()

        for (int i = 0; i < table.getTableColumns().length; i++) {
            final TableColumn column = table.getTableColumns()[i];
            if (column != null) {
                //Compute the width of the column
                int colWidth = -1;
                if (column.traitColumnWidthTableUnits() > 0) {
                    //Proportional width
                    colWidth = (int) (column.traitColumnWidthTableUnits()
                            * dUnitLength);
                } else {
                    //Fixed width
View Full Code Here

Examples of org.axsl.fo.fo.TableColumn.traitColumnWidthTableUnits()

            if (column != null) {
                //Compute the width of the column
                int colWidth = -1;
                if (column.traitColumnWidthTableUnits() > 0) {
                    //Proportional width
                    colWidth = (int) (column.traitColumnWidthTableUnits()
                            * dUnitLength);
                } else {
                    //Fixed width
                    colWidth = column.traitColumnWidth(this);
                }
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.