SetTableThinBorders
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 colour specified by the Red, Green and Blue parameters.
Syntax
Delphi
Function TPDFlib.SetTableThinBorders(TableID, ThinBorders: Integer; Red, Green, Blue: Double): Integer;
ActiveX
Function PDFlib::SetTableThinBorders(TableID As Long, ThinBorders As Long, Red As Double, Green As Double, Blue As Double) As Long
DLL
int DLSetTableThinBorders(int InstanceID, int TableID, int ThinBorders, double Red, double Green, double Blue);
Parameters
| TableID | A TableID returned by the CreateTable function |
|---|---|
| ThinBorders | 0 = Use bevelled edges (the default) 1 = Use thin lines |
| Red | The red component of the colour, a value from 0 to 1 The green component of the colour, a value from 0 to 1 |
| Green | The blue component of the colour, a value from 0 to 1 |
| Blue |
Return values
| 0 | The table line style could not be set |
|---|---|
| 1 | The table line style was set successfully |