PdfParameters
Contents
[
Hide
]PdfParameters class
PDF parameters wrapper. Expects an underlying mwObject instance that provides the corresponding getter/setter methods returning/accepting CMYK strings like “30_100_0_30” or null.
new PdfParameters(mwObject)
| Parameter | Type | Description |
|---|---|---|
| mwObject | object | – instance of the Java PdfParameters class |
Methods
| Name | Description |
|---|---|
| _initializeWrapperMembers() | no-op initializer |
| getCMYKBackColor() | CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used. |
| getCMYKBarColor() | CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used. |
| getCMYKCaptionAboveColor() | CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used. |
| getCMYKCaptionBelowColor() | CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used. |
| getCMYKCodetextColor() | CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used. |
| isTextAsPath() | Are paths used instead of text (use if Unicode characters are not displayed) Default value: false. |
| setCMYKBackColor(value) | CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used. |
| setCMYKBarColor(value) | CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used. |
| setCMYKCaptionAboveColor(value) | CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used. |
| setCMYKCaptionBelowColor(value) | CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used. |
| setCMYKCodetextColor(value) | CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used. |
| setTextAsPath() | Are paths used instead of text (use if Unicode characters are not displayed) Default value: false. |