SetTableThinBordersCMYK
Page layout
Description
Sets a table to use thin border lines instead of bevelled edges. These lines appear as a single pixel width for all zoom levels.
The lines are drawn using the color specified by the C, M, Y and K parameters.
Syntax
Delphi
function TPDFlib.SetTableThinBordersCMYK(TableID, ThinBorders: Integer; C, M, Y, K: Double): Integer;ActiveX
Function PDFlib::SetTableThinBordersCMYK(TableID As Long, ThinBorders As Long, C As Double, M As Double, Y As Double, K As Double) As LongDLL
int DLSetTableThinBordersCMYK(int InstanceID, int TableID, int ThinBorders, double C, double M, double Y, double K);Parameters
| TableID | A TableID returned by the CreateTable function |
|---|---|
| ThinBorders | 0 = Use bevelled edges (the default) 1 = Use thin lines |
| C | The cyan component of the color, a value from 0 to 1 The magenta component of the color, a value from 0 to 1 |
| M | The yellow component of the color, a value from 0 to 1 |
| Y | |
| K | The black component of the color, a value from 0 to 1 |
Return values
| 0 | The table line style could not be set |
|---|---|
| 1 | The table line style was set successfully |