SetTextUnderlineColorCMYK
Text, Colour
Description
Sets the colour used to draw the lines for subsequently drawn text that has an underline style, but allows the colour to be set using the CMYK colour space.
Syntax
Delphi
function TPDFlib.SetTextUnderlineColorCMYK(C, M, Y, K: Double): Integer;ActiveX
Function PDFlib::SetTextUnderlineColorCMYK(C As Double, M As Double, Y As Double, K As Double) As LongDLL
int DLSetTextUnderlineColorCMYK(int InstanceID, double C, double M, double Y, double K);Parameters
| C | A value between 0 and 1 indicating the amount of cyan to add to the underline colour. 0 indicates no cyan, 1 indicates maximum cyan. |
|---|---|
| M | A value between 0 and 1 indicating the amount of magenta to add to the underline colour. 0 indicates no magenta, 1 indicates maximum magenta. |
| Y | A value between 0 and 1 indicating the amount of yellow to add to the underline colour. 0 indicates no yellow, 1 indicates maximum yellow. |
| K | A value between 0 and 1 indicating the amount of black to add to the underline colour. 0 indicates no black, 1 indicates maximum black. |