Creates a color based on GMYK values. The color values are on a scale from 0 to 1.

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public PdfColor(
	float cyan,
	float magenta,
	float yellow,
	float key
)
Visual Basic
Public Sub New ( 
	cyan As Single,
	magenta As Single,
	yellow As Single,
	key As Single
)
Visual C++
public:
PdfColor(
	float cyan, 
	float magenta, 
	float yellow, 
	float key
)

Parameters

cyan
Type: System..::..Single
Cyan value.
magenta
Type: System..::..Single
Magenta value.
yellow
Type: System..::..Single
Yellow value.
key
Type: System..::..Single
Key value.

See Also