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 Long

DLL

int DLSetTableThinBordersCMYK(int InstanceID, int TableID, int ThinBorders, double C, double M, double Y, double K);

Parameters

TableIDA TableID returned by the CreateTable function
ThinBorders0 = Use bevelled edges (the default) 1 = Use thin lines
CThe cyan component of the color, a value from 0 to 1 The magenta component of the color, a value from 0 to 1
MThe yellow component of the color, a value from 0 to 1
Y
KThe black component of the color, a value from 0 to 1

Return values

0The table line style could not be set
1The table line style was set successfully