亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? table.java

?? 一個java操作pdf文件的開發包,很好用的.
?? JAVA
?? 第 1 頁 / 共 4 頁
字號:
 * Sets the unset cell properties to be the table defaults. * * @param aCell The cell to set to table defaults as necessary. */    private void assumeTableDefaults(Cell aCell) {        if (aCell.border() == Rectangle.UNDEFINED) {            aCell.setBorder(defaultLayout.border());        }        if (aCell.borderWidth() == Rectangle.UNDEFINED) {            aCell.setBorderWidth(defaultLayout.borderWidth());        }        if (aCell.borderColor() == null) {            aCell.setBorderColor(defaultLayout.borderColor());        }        if (aCell.backgroundColor() == null) {            aCell.setBackgroundColor(defaultLayout.backgroundColor());        }        if (aCell.grayFill() == Rectangle.UNDEFINED) {            aCell.setGrayFill(defaultLayout.grayFill());        }        if (aCell.horizontalAlignment() == Element.ALIGN_UNDEFINED) {            aCell.setHorizontalAlignment(defaultLayout.horizontalAlignment());        }        if (aCell.verticalAlignment() == Element.ALIGN_UNDEFINED) {            aCell.setVerticalAlignment(defaultLayout.verticalAlignment());        }    }/** * Deletes a column in this table. * * @param       column  the number of the column that has to be deleted */    public void deleteColumn(int column) throws BadElementException {        float newWidths[] = new float[--columns];        for (int i = 0; i < column; i++) {            newWidths[i] = widths[i];        }        for (int i = column; i < columns; i++) {            newWidths[i] = widths[i + 1];        }        setWidths(newWidths);        for (int i = 0; i < columns; i++) {            newWidths[i] = widths[i];        }        widths = newWidths;        Row row;        int size = rows.size();        for (int i = 0; i < size; i++) {            row = (Row) rows.get(i);            row.deleteColumn(column);            rows.set(i, row);        }        if (column == columns) {            curPosition.setLocation(curPosition.x+1, 0);        }    }/** * Deletes a row. * * @param       row             the number of the row to delete * @return      boolean <CODE>true</CODE> if the row was deleted; <CODE>false</CODE> if not */    public boolean deleteRow(int row) {        if (row < 0 || row >= rows.size()) {            return false;        }        rows.remove(row);        curPosition.setLocation(curPosition.x-1, curPosition.y);        return true;    }/** * Deletes the last row in this table. * * @return      boolean <CODE>true</CODE> if the row was deleted; <CODE>false</CODE> if not */    public boolean deleteLastRow() {        return deleteRow(rows.size() - 1);    }/** * Marks the last row of the table headers. * * @return      the number of the last row of the table headers */    public int endHeaders() {        /* patch sep 8 2001 Francesco De Milato */        lastHeaderRow = curPosition.x - 1;        return lastHeaderRow;    }    // methods to set the membervariables/** * Sets the horizontal alignment. * * @param       value   the new value */    public void setLastHeaderRow(int value) {        lastHeaderRow = value;    }/** * Sets the horizontal alignment. * * @param       value   the new value */    public void setAlignment(int value) {        alignment = value;    }/** * Sets the alignment of this paragraph. * * @param    alignment        the new alignment as a <CODE>String</CODE> */    public void setAlignment(String alignment) {        if (ElementTags.ALIGN_LEFT.equalsIgnoreCase(alignment)) {            this.alignment = Element.ALIGN_LEFT;            return;        }        if (ElementTags.RIGHT.equalsIgnoreCase(alignment)) {            this.alignment = Element.ALIGN_RIGHT;            return;        }        this.alignment = Element.ALIGN_CENTER;    }/** * Sets the cellpadding. * * @param       value   the new value */    public void setSpaceInsideCell(float value) {        cellpadding = value;    }/** * Sets the cellspacing. * * @param       value   the new value */    public void setSpaceBetweenCells(float value) {        cellspacing = value;    }/** * Sets the cellpadding. * * @param       value   the new value */    public void setPadding(float value) {        cellpadding = value;    }/** * Sets the cellspacing. * * @param       value   the new value */    public void setSpacing(float value) {        cellspacing = value;    }/** * Sets the cellspacing (the meaning of cellpadding and cellspacing was inverted by mistake). * * @param       value   the new value * @deprecated  use setSpacing instead */    public void setCellpadding(float value) {        cellspacing = value;    }/** * Sets the cellpadding (the meaning of cellpadding and cellspacing was inverted by mistake). * * @param       value   the new value * @deprecated  use setPadding instead */    public void setCellspacing(float value) {        cellpadding = value;    }/** * Sets the width of this table (in percentage of the available space). * * @param       width           the width */    public void setWidth(float width) {        this.widthPercentage = width;    }/** * Sets the width of this table (in percentage of the available space). * * @param   width           the width */    public void setAbsWidth(String width) {        this.absWidth = width;    }/** * Sets the widths of the different columns (percentages). * <P> * You can give up relative values of borderwidths. * The sum of these values will be considered 100%. * The values will be recalculated as percentages of this sum. * <P> * example: * <BLOCKQUOTE><PRE> * float[] widths = {2, 1, 1}; * <STRONG>table.setWidths(widths)</STRONG> * </PRE></BLOCKQUOTE> * The widths will be: a width of 50% for the first column, * 25% for the second and third column. * * @param       widths  an array with values */    public void setWidths(float[] widths) throws BadElementException {        if (widths.length != columns) {            throw new BadElementException("Wrong number of columns.");        }        // The sum of all values is 100%        float hundredPercent = 0;        for (int i = 0; i < columns; i++) {            hundredPercent += widths[i];        }        // The different percentages are calculated        float width;        this.widths[columns - 1] = 100;        for (int i = 0; i < columns - 1; i++) {            width = (100.0f * widths[i]) / hundredPercent;            this.widths[i] = width;            this.widths[columns - 1] -= width;        }    }/** * Sets the widths of the different columns (percentages). * <P> * You can give up relative values of borderwidths. * The sum of these values will be considered 100%. * The values will be recalculated as percentages of this sum. * * @param       widths  an array with values */    public void setWidths(int[] widths) throws DocumentException {        float tb[] = new float[widths.length];        for (int k = 0; k < widths.length; ++k)            tb[k] = widths[k];        setWidths(tb);    }    // methods to retrieve the membervariables/** * Gets the number of columns. * * @return    a value */    public int columns() {        return columns;    }/** * Gets the number of rows in this <CODE>Table</CODE>. * * @return      the number of rows in this <CODE>Table</CODE> */    public int size() {        return rows.size();    }/** * Gets the proportional widths of the columns in this <CODE>Table</CODE>. * * @return      the proportional widths of the columns in this <CODE>Table</CODE> */    public float[] getProportionalWidths() {        return widths;    }/** * Gets an <CODE>Iterator</CODE> of all the <CODE>Row</CODE>s. * * @return      an <CODE>Iterator</CODE> */    public Iterator iterator() {        return rows.iterator();    }/** * Gets the horizontal alignment. * * @return  a value */    public int alignment() {        return alignment;    }/** * Gets the cellpadding. * * @return  a value */    public float cellpadding() {        return cellpadding;    }/** * Gets the cellspacing. * * @return  a value */    public float cellspacing() {        return cellspacing;    }/** * Gets the table width (a percentage). * * @return      the table width */    public float widthPercentage() {        return widthPercentage;    }/** * Gets the table width (in pixels). * * @return  the table width */    public String absWidth() {        return absWidth;    }/** * Gets the first number of the row that doesn't contain headers. * * @return      a rownumber */    public int firstDataRow() {        return lastHeaderRow + 1;    }/** * Gets the dimension of this table * * @return  dimension */    public Dimension getDimension() {        return new Dimension(columns, rows.size());    }/** * returns the element at the position row, column *          (Cast to Cell or Table) * * @return  dimension */    public Object getElement(int row, int column) {        return ((Row) rows.get(row)).getCell(column);    }/** * Integrates all added tables and recalculates column widths. */    private void mergeInsertedTables() {        int i=0, j=0;        float [] lNewWidths = null;        int [] lDummyWidths = new int[columns];     // to keep track in how many new cols this one will be split        float[][] lDummyColumnWidths = new float[columns][]; // bugfix Tony Copping        int [] lDummyHeights = new int[rows.size()]; // to keep track in how many new rows this one will be split        ArrayList newRows = null;        int lTotalRows  = 0, lTotalColumns      = 0;        int lNewMaxRows = 0, lNewMaxColumns     = 0;        Table lDummyTable = null;        // first we'll add new columns when needed

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线观看你懂的| 一区二区三区在线观看动漫| 欧美大片一区二区| 日韩午夜激情av| 精品日韩欧美在线| 久久亚洲综合色一区二区三区| 日韩一区二区三区在线观看| 日韩一区二区三区电影 | 日韩午夜在线观看| 日韩一区二区三区视频在线| 日韩欧美视频在线| 欧美成人乱码一区二区三区| 久久嫩草精品久久久久| 国产亚洲一区二区三区四区 | 韩国av一区二区三区在线观看| 国产在线精品一区二区三区不卡| 国内精品国产三级国产a久久| 国产精品一区专区| voyeur盗摄精品| 欧美在线综合视频| 777亚洲妇女| 久久中文字幕电影| 亚洲一区二区欧美激情| 亚洲乱码国产乱码精品精小说| 欧美va亚洲va| 欧美一区二区三区视频免费 | 91网站最新地址| 亚洲成av人片在www色猫咪| 丝袜国产日韩另类美女| 欧美日韩国产一二三| 7777精品久久久大香线蕉| 欧美成人一区二区三区| 国产日韩欧美精品一区| 亚洲欧洲综合另类| 婷婷丁香久久五月婷婷| 国产精品12区| 欧美天天综合网| 欧美精品一区二区三区在线| 国产精品久久久久久久午夜片| 一区二区国产视频| 国产剧情一区二区| 色噜噜狠狠色综合中国| 日韩欧美国产精品| 亚洲欧洲综合另类| 韩国欧美一区二区| 欧美午夜片在线看| 国产午夜亚洲精品理论片色戒| 夜色激情一区二区| 久久99精品久久久久| 91美女蜜桃在线| 精品国产乱码久久久久久免费 | 亚洲综合另类小说| 国产精品自在在线| 欧美在线观看视频一区二区| 久久久久久久性| 视频一区中文字幕国产| 国产91精品久久久久久久网曝门| 欧美日韩精品免费| 亚洲欧洲一区二区三区| 欧美日韩一区二区电影| 国产午夜亚洲精品羞羞网站| 天天综合色天天综合| 成人av网站大全| 精品国产乱码久久久久久闺蜜| 亚洲综合成人在线视频| 成人av综合在线| 亚洲精品一区二区三区影院| 亚洲国产日韩a在线播放性色| 成人av在线电影| 日韩欧美的一区| 亚洲风情在线资源站| 91丨九色丨黑人外教| 久久久国产精品午夜一区ai换脸| 日本不卡一区二区三区高清视频| 91一区一区三区| 欧美经典一区二区三区| 精品一区二区三区在线播放视频 | 久久影视一区二区| 日本免费新一区视频| 欧洲人成人精品| 亚洲欧洲日韩一区二区三区| 国产酒店精品激情| 精品国产乱码久久久久久图片 | 亚洲国产成人av| 91黄色免费看| 亚洲三级电影全部在线观看高清| 东方欧美亚洲色图在线| 久久夜色精品国产噜噜av| 久久精品久久精品| 欧美一区二区成人6969| 亚州成人在线电影| 欧美三级电影一区| 一区二区三区波多野结衣在线观看| 99久久久免费精品国产一区二区| 国产婷婷精品av在线| 国产麻豆精品视频| 久久综合狠狠综合| 国产福利一区二区三区视频在线| 26uuu精品一区二区在线观看| 精品一二三四在线| 亚洲精品在线免费观看视频| 日韩手机在线导航| 日本不卡一二三| 欧美大片日本大片免费观看| 美女高潮久久久| 久久综合给合久久狠狠狠97色69| 国产精品综合久久| 国产精品久久毛片a| 99精品欧美一区二区蜜桃免费| 亚洲视频小说图片| 一本一道综合狠狠老| 亚洲国产日韩精品| 91精品蜜臀在线一区尤物| 奇米色一区二区| 亚洲精品一区二区三区在线观看| 国产成人自拍在线| 国产精品久久免费看| 在线日韩av片| 日韩高清电影一区| 26uuu国产日韩综合| 成人黄色777网| 亚洲精品成人a在线观看| 欧美日韩亚洲综合一区| 日韩高清不卡一区二区| 久久网站热最新地址| 成a人片国产精品| 一区二区三区波多野结衣在线观看| 欧美精品日韩一本| 韩国精品主播一区二区在线观看| 国产精品久久久久天堂| 91黄色免费版| 精品系列免费在线观看| 欧美激情在线一区二区| 色菇凉天天综合网| 美女精品自拍一二三四| 中文字幕在线一区免费| 欧美亚洲禁片免费| 精品一区二区三区免费| 不卡的看片网站| 亚洲电影一级片| 久久综合色鬼综合色| 91天堂素人约啪| 秋霞电影网一区二区| 国产精品灌醉下药二区| 欧美日韩高清影院| 国产传媒一区在线| 亚洲国产精品一区二区久久| 久久综合狠狠综合久久综合88| 色菇凉天天综合网| 国产在线播精品第三| 一区二区三区视频在线观看| 日韩欧美三级在线| 色婷婷久久久综合中文字幕| 日韩激情av在线| 国产精品久久久久影院| 日韩欧美你懂的| 91网址在线看| 国产精品亚洲视频| 日韩精品五月天| 亚洲美女视频一区| 亚洲精品在线免费播放| 欧美日韩国产影片| 91小视频免费看| 国产成人亚洲综合a∨婷婷| 视频一区视频二区中文| 国产精品久久三区| 久久综合五月天婷婷伊人| 欧美日韩精品是欧美日韩精品| 懂色一区二区三区免费观看| 日韩成人午夜电影| 亚洲免费观看高清完整版在线 | 成人欧美一区二区三区白人 | 最新国产成人在线观看| 精品入口麻豆88视频| 欧美调教femdomvk| 91丨porny丨在线| 国产乱码精品一区二区三区av| 婷婷综合在线观看| 136国产福利精品导航| 国产人成一区二区三区影院| 日韩一区二区三区在线| 欧洲精品一区二区| 97久久精品人人澡人人爽| 国产精品1区2区| 国产一区二区免费在线| 琪琪一区二区三区| 午夜欧美一区二区三区在线播放| 成人欧美一区二区三区白人| 国产亚洲一二三区| 久久久精品免费免费| 精品久久久久久亚洲综合网| 欧美精品aⅴ在线视频| 欧美羞羞免费网站| 91啪亚洲精品| 99精品国产视频| 成人av在线网| 91麻豆国产福利精品| 91丝袜美腿高跟国产极品老师| 99热这里都是精品| 91丨porny丨国产入口|