SetTableThinBordersCMYK
Version history
This function was introduced in Quick PDF Library version 8.14.
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 width of this line cannot be changed by the function SetTableCellBorderWidth.d
The lines are drawn using the color specified by the C, M, Y and K parameters.
Syntax
Delphi
function TDebenuPDFLibrary1811.SetTableThinBordersCMYK(TableID,
ThinBorders: Integer; C, M, Y, K: Double): Integer;
ActiveX
Function DebenuPDFLibrary1811.PDFLibrary::SetTableThinBordersCMYK(TableID As Long,
ThinBorders As Long, C As Double, M As Double, Y As Double,
K As Double) As Long
DLL
int DPLSetTableThinBordersCMYK(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 |
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 |
Return values
0 | The table line style could not be set |
1 | The table line style was set successfully |