SetTableCellBorderColorCMYK
Colour, Page layout
Description
Sets the colour of one or more cell borders using the CMYK colour space.
Syntax
Delphi
Function TPDFlib.SetTableCellBorderColorCMYK(TableID, FirstRow, FirstColumn, LastRow, LastColumn, BorderIndex: Integer; C, M, Y, K: Double): Integer;
ActiveX
Function PDFlib::SetTableCellBorderColorCMYK(TableID As Long, FirstRow As Long, FirstColumn As Long, LastRow As Long, LastColumn As Long, BorderIndex As Long, C As Double, M As Double, Y As Double, K As Double) As Long
DLL
int DLSetTableCellBorderColorCMYK(int InstanceID, int TableID, int FirstRow, int FirstColumn, int LastRow, int LastColumn, int BorderIndex, double C, double M, double Y, double K);
Parameters
| TableID | A TableID returned by the CreateTable function |
|---|---|
| FirstRow | The the number of the first row to set. Top row is row number 1. |
| FirstColumn | The the number of the first column to set. Left most column is column number 1. |
| LastRow | The number of the final row to set |
| LastColumn | The number of the final column to set 0 = All borders 1 = Left 2 = Top 3 = Right 4 = Bottom |
| BorderIndex | |
| C | The cyan component of the colour, a value from 0 to 1 |
| M | The magenta component of the colour, a value from 0 to 1 |
| Y | The yellow component of the colour, a value from 0 to 1 |
| K | The black component of the colour, a value from 0 to 1 |