SetTableBorderColorCMYK
Color, Page layout
Description
Sets the color of the specified table border using the CMYK color space.
Syntax
Delphi
function TPDFlib.SetTableBorderColorCMYK(TableID, BorderIndex: Integer; C, M, Y, K: Double): Integer;ActiveX
Function PDFlib::SetTableBorderColorCMYK(TableID As Long, BorderIndex As Long, C As Double, M As Double, Y As Double, K As Double) As LongDLL
int DLSetTableBorderColorCMYK(int InstanceID, int TableID, int BorderIndex, double C, double M, double Y, double K);Parameters
| TableID | A TableID returned by the CreateTable function 0 = All borders 1 = Left 2 = Top 3 = Right 4 = Bottom |
|---|---|
| BorderIndex | |
| C | The cyan component of the color, a value from 0 to 1 |
| M | The magenta component of the color, a value from 0 to 1 |
| Y | The yellow component of the color, a value from 0 to 1 |
| K | The black component of the color, a value from 0 to 1 |