Method from org.apache.pdfbox.pdmodel.interactive.annotation.PDBorderEffectDictionary Detail: |
public COSBase getCOSObject() {
return dictionary;
}
|
public COSDictionary getDictionary() {
return dictionary;
}
|
public float getIntensity() {
return getDictionary().getFloat( "I", 0 );
}
This will retrieve the intensity of the applied effect. |
public String getStyle() {
return getDictionary().getNameAsString( "S", STYLE_SOLID );
}
This will retrieve the border effect, see the STYLE_* constants for valid
values. |
public void setIntensity(float i) {
getDictionary().setFloat( "I", i );
}
This will set the intensity of the applied effect. |
public void setStyle(String s) {
getDictionary().setName( "S", s );
}
This will set the border effect, see the STYLE_* constants for valid values. |