| |
|
| java.lang.Object org.pdfbox.pdmodel.interactive.annotation.PDBorderEffectDictionary
PDBorderEffectDictionary | public class PDBorderEffectDictionary implements COSObjectable(Code) | | This class represents a PDF /BE entry the border effect dictionary.
author: Paul King version: $Revision: 1.1 $ |
Method Summary | |
public COSBase | getCOSObject() returns the dictionary. | public COSDictionary | getDictionary() returns the dictionary. | public float | getIntensity() This will retrieve the intensity of the applied effect. | public String | getStyle() This will retrieve the border effect, see the STYLE_* constants for valid
values. | public void | setIntensity(float i) This will set the intensity of the applied effect. | public void | setStyle(String s) This will set the border effect, see the STYLE_* constants for valid values. |
STYLE_CLOUDY | final public static String STYLE_CLOUDY(Code) | | Constant for the name of a cloudy effect.
|
STYLE_SOLID | final public static String STYLE_SOLID(Code) | | Constant for the name for no effect.
|
PDBorderEffectDictionary | public PDBorderEffectDictionary()(Code) | | Constructor.
|
PDBorderEffectDictionary | public PDBorderEffectDictionary(COSDictionary dict)(Code) | | Constructor.
Parameters: dict - a border style dictionary. |
getCOSObject | public COSBase getCOSObject()(Code) | | returns the dictionary.
the dictionary |
getIntensity | public float getIntensity()(Code) | | This will retrieve the intensity of the applied effect.
the intensity value 0 to 2 |
getStyle | public String getStyle()(Code) | | This will retrieve the border effect, see the STYLE_* constants for valid
values.
the effect of the border |
setIntensity | public void setIntensity(float i)(Code) | | This will set the intensity of the applied effect.
Parameters: i - the intensity of the effect values 0 to 2 |
setStyle | public void setStyle(String s)(Code) | | This will set the border effect, see the STYLE_* constants for valid values.
Parameters: s - the border effect to use |
|
|
|