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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? rtftablecell.java

?? iText可以制作中文PDF文件的JAVA源程序最新版下載
?? JAVA
字號:
package com.lowagie.text.rtf;import com.lowagie.text.Cell;import com.lowagie.text.Element;import com.lowagie.text.BadElementException;import java.util.Properties;/** * A <code>Cell</code> with extended style attributes */public class RtfTableCell extends Cell{    /* Table border styles */        /** Table border solid */    public static final int BORDER_UNDEFINED = 0;        /** Table border solid */    public static final int BORDER_SINGLE = 1;        /** Table border double thickness */    public static final int BORDER_DOUBLE_THICK = 2;        /** Table border shadowed */    public static final int BORDER_SHADOWED = 3;        /** Table border dotted */    public static final int BORDER_DOTTED = 4;        /** Table border dashed */    public static final int BORDER_DASHED = 5;        /** Table border hairline */    public static final int BORDER_HAIRLINE = 6;        /** Table border double line */    public static final int BORDER_DOUBLE = 7;        /** Table border dot dash line */    public static final int BORDER_DOT_DASH = 8;        /** Table border dot dot dash line */    public static final int BORDER_DOT_DOT_DASH = 9;        /** Table border triple line */    public static final int BORDER_TRIPLE = 10;    /** Table border line */    public static final int BORDER_THICK_THIN = 11;        /** Table border line */    public static final int BORDER_THIN_THICK = 12;        /** Table border line */    public static final int BORDER_THIN_THICK_THIN = 13;        /** Table border line */    public static final int BORDER_THICK_THIN_MED = 14;        /** Table border line */    public static final int BORDER_THIN_THICK_MED = 15;        /** Table border line */    public static final int BORDER_THIN_THICK_THIN_MED = 16;        /** Table border line */    public static final int BORDER_THICK_THIN_LARGE = 17;        /** Table border line */    public static final int BORDER_THIN_THICK_LARGE = 18;        /** Table border line */    public static final int BORDER_THIN_THICK_THIN_LARGE = 19;        /** Table border line */    public static final int BORDER_WAVY = 20;        /** Table border line */    public static final int BORDER_DOUBLE_WAVY = 21;        /** Table border line */    public static final int BORDER_STRIPED = 22;        /** Table border line */    public static final int BORDER_EMBOSS = 23;        /** Table border line */    public static final int BORDER_ENGRAVE = 24;        /* Instance variables */    private float topBorderWidth;    private float leftBorderWidth;    private float rightBorderWidth;    private float bottomBorderWidth;    private int topBorderStyle = 1;    private int leftBorderStyle = 1;    private int rightBorderStyle = 1;    private int bottomBorderStyle = 1;    /** * Constructs an empty <CODE>Cell</CODE> (for internal use only). * * @param   dummy   a dummy value */    public RtfTableCell(boolean dummy) {        super(dummy);    }    /** * Constructs a <CODE>Cell</CODE> with a certain <CODE>Element</CODE>. * <P> * if the element is a <CODE>ListItem</CODE>, <CODE>Row</CODE> or * <CODE>Cell</CODE>, an exception will be thrown. * * @param	element		the element * @throws	BadElementException when the creator was called with a <CODE>ListItem</CODE>, <CODE>Row</CODE> or <CODE>Cell</CODE> */    public RtfTableCell(Element element) throws BadElementException {        super(element);    }    /** * Constructs a <CODE>Cell</CODE> with a certain content. * <P> * The <CODE>String</CODE> will be converted into a <CODE>Paragraph</CODE>. * * @param	content		a <CODE>String</CODE> */    public RtfTableCell(String content) {        super(content);    }    /** * Returns a <CODE>Cell</CODE> that has been constructed taking in account * the value of some <VAR>attributes</VAR>. * * @param	attributes		Some attributes */    public RtfTableCell(Properties attributes) {        super(attributes);    }        /**     * Set all four borders to <code>f</code> width     *     * @param f the desired width     */    public void setBorderWidth(float f) {        super.setBorderWidth(f);        topBorderWidth = f;        leftBorderWidth = f;        rightBorderWidth = f;        bottomBorderWidth = f;    }        /**     * Set the top border to <code>f</code> width     *     * @param f the desired width     */    public void setTopBorderWidth(float f) {        topBorderWidth = f;    }        /**     * Get the top border width     */    public float topBorderWidth() {        return topBorderWidth;    }        /**     * Set the left border to <code>f</code> width     *     * @param f the desired width     */    public void setLeftBorderWidth(float f) {        leftBorderWidth = f;    }        /**     * Get the left border width     */    public float leftBorderWidth() {        return leftBorderWidth;    }        /**     * Set the right border to <code>f</code> width     *     * @param f the desired width     */    public void setRightBorderWidth(float f) {        rightBorderWidth = f;    }        /**     * Get the right border width     */    public float rightBorderWidth() {        return rightBorderWidth;    }        /**     * Set the bottom border to <code>f</code> width     *     * @param f the desired width     */    public void setBottomBorderWidth(float f) {        bottomBorderWidth = f;    }        /**     * Get the bottom border width     */    public float bottomBorderWidth() {        return bottomBorderWidth;    }        /**     * Set all four borders to style defined by <code>style</code>     *     * @param style the desired style     */    public void setBorderStyle(int style) {        topBorderStyle = style;        leftBorderStyle = style;        rightBorderStyle = style;        bottomBorderStyle = style;    }        /**     * Set the top border to style defined by <code>style</code>     *     * @param style the desired style     */    public void setTopBorderStyle(int style) {        topBorderStyle = style;    }        /**     * Get the top border style     */    public int topBorderStyle() {        return topBorderStyle;    }        /**     * Set the left border to style defined by <code>style</code>     *     * @param style the desired style     */    public void setLeftBorderStyle(int style) {        leftBorderStyle = style;    }        /**     * Get the left border style     */    public int leftBorderStyle() {        return leftBorderStyle;    }        /**     * Set the right border to style defined by <code>style</code>     *     * @param style the desired style     */    public void setRightBorderStyle(int style) {        rightBorderStyle = style;    }        /**     * Get the right border style     */    public int rightBorderStyle() {        return rightBorderStyle;    }        /**     * Set the bottom border to style defined by <code>style</code>     *     * @param style the desired style     */    public void setBottomBorderStyle(int style) {        bottomBorderStyle = style;    }        /**     * Get the bottom border style     */    public int bottomBorderStyle() {        return bottomBorderStyle;    }        /**     * Get the RTF control word for <code>style</code>     */    protected static byte[] getStyleControlWord(int style) {        switch(style)        {            case BORDER_UNDEFINED				: return "brdrs".getBytes();            case BORDER_SINGLE 					: return "brdrs".getBytes();            case BORDER_DOUBLE_THICK	 		: return "brdrth".getBytes();            case BORDER_SHADOWED 				: return "brdrsh".getBytes();            case BORDER_DOTTED   				: return "brdrdot".getBytes();            case BORDER_DASHED   				: return "brdrdash".getBytes();            case BORDER_HAIRLINE   				: return "brdrhair".getBytes();            case BORDER_DOUBLE 		  			: return "brdrdb".getBytes();            case BORDER_DOT_DASH   				: return "brdrdashd".getBytes();            case BORDER_DOT_DOT_DASH			: return "brdrdashdd".getBytes();            case BORDER_TRIPLE					: return "brdrtriple".getBytes();            case BORDER_THICK_THIN				: return "brdrtnthsg".getBytes();            case BORDER_THIN_THICK				: return "brdrthtnsg".getBytes();            case BORDER_THIN_THICK_THIN			: return "brdrtnthtnsg".getBytes();            case BORDER_THICK_THIN_MED			: return "brdrtnthmg".getBytes();            case BORDER_THIN_THICK_MED			: return "brdrthtnmg".getBytes();            case BORDER_THIN_THICK_THIN_MED		: return "brdrtnthtnmg".getBytes();            case BORDER_THICK_THIN_LARGE		: return "brdrtnthlg".getBytes();            case BORDER_THIN_THICK_LARGE		: return "brdrthtnlg".getBytes();            case BORDER_THIN_THICK_THIN_LARGE	: return "brdrtnthtnlg".getBytes();            case BORDER_WAVY					: return "brdrwavy".getBytes();            case BORDER_DOUBLE_WAVY				: return "brdrwavydb".getBytes();            case BORDER_STRIPED					: return "brdrdashdotstr".getBytes();            case BORDER_EMBOSS					: return "brdremboss".getBytes();            case BORDER_ENGRAVE					: return "brdrengrave".getBytes();        }                return "brdrs".getBytes();    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
美女视频免费一区| 在线不卡一区二区| 91精品国产综合久久久久久 | 亚洲成精国产精品女| 九九在线精品视频| 欧美最新大片在线看| 久久久噜噜噜久久人人看 | 五月婷婷激情综合网| 日日摸夜夜添夜夜添国产精品| 精彩视频一区二区三区| 91成人在线免费观看| 久久久国产精品不卡| 天堂午夜影视日韩欧美一区二区| 成人午夜视频福利| 欧美肥胖老妇做爰| 亚洲午夜国产一区99re久久| 国产成人av电影在线| 欧美mv日韩mv国产| 日韩影院在线观看| 精品视频999| 亚洲精选一二三| 99久久精品国产导航| 精品国产第一区二区三区观看体验 | 色美美综合视频| 国产精品免费视频观看| 激情文学综合插| 日韩女优av电影| 午夜精品视频一区| 欧美手机在线视频| 亚洲男人的天堂av| 91小视频免费看| 国产精品毛片久久久久久 | 日韩国产精品91| 在线成人午夜影院| 日韩经典中文字幕一区| 欧美日韩mp4| 日本一不卡视频| 日韩欧美在线影院| 麻豆91在线播放免费| 日韩视频一区二区三区| 蜜桃视频一区二区三区| 91精品国产综合久久精品麻豆| 香港成人在线视频| 91精品国产欧美一区二区成人| 天天综合色天天| 日韩欧美一级特黄在线播放| 免费在线一区观看| 日韩精品专区在线影院重磅| 激情六月婷婷综合| 国产日韩综合av| 99久久精品久久久久久清纯| 亚洲欧美经典视频| 欧美精品在线视频| 久久99精品久久久久久动态图| 日韩欧美第一区| 国产乱人伦偷精品视频免下载| 久久久91精品国产一区二区三区| 国产精品亚洲成人| 亚洲三级电影全部在线观看高清| 色综合天天综合在线视频| 亚洲一卡二卡三卡四卡五卡| 欧美一级电影网站| 国产精品一区二区在线看| 1000精品久久久久久久久| 一本到不卡精品视频在线观看| 亚洲人吸女人奶水| 欧美一区三区二区| 国产成人精品aa毛片| 亚洲综合免费观看高清在线观看| 欧美一区二区三区视频免费| 国产精品1区2区| 亚洲一区影音先锋| 久久综合99re88久久爱| 99re热视频精品| 美女视频黄免费的久久| 国产精品久久久久久久久免费相片 | 亚洲第一搞黄网站| 久久久久久综合| 欧美视频一区在线观看| 国产在线视视频有精品| 亚洲免费观看在线视频| 欧美岛国在线观看| 日本韩国一区二区三区| 精品中文字幕一区二区| 亚洲黄色小视频| 久久久久久麻豆| 欧美日韩精品欧美日韩精品一| 国产馆精品极品| 日本亚洲欧美天堂免费| 国产精品成人免费| 久久综合久色欧美综合狠狠| 91麻豆免费看| 国产精品2024| 韩国午夜理伦三级不卡影院| 一区二区三区日韩欧美精品| 精品福利视频一区二区三区| 欧美日韩国产天堂| 色综合av在线| 不卡一卡二卡三乱码免费网站| 久久精品国产久精国产| 亚洲aaa精品| 一区二区三区四区激情| 国产精品午夜免费| 国产亚洲午夜高清国产拍精品| 欧美日韩国产a| 欧美在线观看视频在线| 99精品视频一区| 99在线热播精品免费| 国产成人亚洲精品青草天美| 久久er99精品| 久久精品国产亚洲aⅴ| 爽爽淫人综合网网站| 亚洲1区2区3区4区| 亚洲成人av电影| 五月天精品一区二区三区| 一区二区三区四区不卡在线| 日韩美女视频一区| 国产精品理论片| 国产精品国产三级国产aⅴ中文| 久久精品欧美日韩| 国产日产欧美精品一区二区三区| 久久中文字幕电影| 久久久久国产成人精品亚洲午夜| 精品剧情v国产在线观看在线| 日韩一级黄色片| 日韩欧美二区三区| 久久精品亚洲麻豆av一区二区| 欧美成人女星排行榜| 欧美mv日韩mv国产| 国产三级精品三级在线专区| 国产欧美日韩亚州综合 | 亚洲男人天堂av网| 亚洲成人在线网站| 免费观看成人鲁鲁鲁鲁鲁视频| 看电视剧不卡顿的网站| 国产福利视频一区二区三区| 豆国产96在线|亚洲| 91美女视频网站| 91精品国产91久久久久久一区二区| 91精品国产91综合久久蜜臀| 欧美精品一区男女天堂| 国产精品久久久久久久第一福利| 亚洲色图欧美激情| 日韩电影在线看| 国产精品一二三四| 一本一道波多野结衣一区二区| 欧美美女视频在线观看| 精品黑人一区二区三区久久| 国产欧美一区二区精品仙草咪| 一区二区三区四区乱视频| 久久精品国产一区二区三区免费看| 国产精品一区二区在线看| 不卡视频一二三| 欧美日韩综合在线免费观看| 欧美日韩日日摸| 国产嫩草影院久久久久| 综合亚洲深深色噜噜狠狠网站| 国产精品福利一区二区| 自拍偷拍国产亚洲| 亚洲成av人片一区二区三区| 日本午夜一区二区| 99久久婷婷国产精品综合| 欧美网站大全在线观看| 日韩午夜激情视频| 国产精品视频一二| 日本aⅴ精品一区二区三区| 国产传媒久久文化传媒| 91成人在线观看喷潮| 91精品国产综合久久精品图片| 久久午夜老司机| 亚洲一卡二卡三卡四卡| 紧缚奴在线一区二区三区| 欧美在线一二三四区| 精品精品国产高清一毛片一天堂| 日本一区二区视频在线| 亚洲综合久久久久| 91视频在线看| 宅男在线国产精品| 中文字幕一区二区三中文字幕| 亚洲国产人成综合网站| 国产精品一线二线三线精华| 在线观看一区日韩| 久久综合色播五月| 日本vs亚洲vs韩国一区三区 | 欧美日韩高清一区二区| 久久精品人人做人人综合| 亚洲国产成人tv| 国产九九视频一区二区三区| 欧美日韩欧美一区二区| 中文久久乱码一区二区| 蜜臀av一区二区在线免费观看| 国产一区二区三区综合| 精品少妇一区二区三区视频免付费| 中文字幕中文字幕中文字幕亚洲无线| 日韩黄色片在线观看| 欧美福利电影网| 亚洲精品久久嫩草网站秘色| 国产传媒欧美日韩成人| 国产人伦精品一区二区| 久久99热这里只有精品|