SetTextColorCMYK

Text, Colour

Description

Sets the colour for any subsequently drawn text. Similar to the SetTextColor function, but the colour components are specified in the CMYK colour space (Cyan, Magenta, Yellow, Black). The values of the colour parameters range from 0 to 1, with 0 indicating 0% and 1 indicating 100% of the colour.

Syntax

Delphi

function TPDFlib.SetTextColorCMYK(C, M, Y, K: Double): Integer;

ActiveX

Function PDFlib::SetTextColorCMYK(C As Double, M As Double, Y As Double, K As Double) As Long

DLL

int DLSetTextColorCMYK(int InstanceID, double C, double M, double Y, double K);

Parameters

CThe cyan component of the colour
MThe magenta component of the colour
YThe yellow component of the colour
KThe black component of the colour