?? patterncolor.java
字號:
package com.lowagie.text.pdf;/** Represents a pattern. Can be used in high-level constructs (Paragraph, Cell, etc.). */public class PatternColor extends ExtendedColor { /** The actual pattern. */ PdfPatternPainter painter; /** Creates a color representing a pattern. * @param painter the actual pattern */ public PatternColor(PdfPatternPainter painter) { super(TYPE_PATTERN, .5f, .5f, .5f); this.painter = painter; } /** Gets the pattern. * @return the pattern */ public PdfPatternPainter getPainter() { return this.painter; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -