SetTableBorderColor
Version history
This function was introduced in Quick PDF Library version 7.14.
Description
Sets the color of the specified table border using the RGB color space.
Syntax
Delphi
function TDebenuPDFLibrary1811.SetTableBorderColor(TableID, BorderIndex: Integer;
Red, Green, Blue: Double): Integer;
ActiveX
Function DebenuPDFLibrary1811.PDFLibrary::SetTableBorderColor(TableID As Long,
BorderIndex As Long, Red As Double, Green As Double,
Blue As Double) As Long
DLL
int DPLSetTableBorderColor(int InstanceID, int TableID, int BorderIndex, double Red,
double Green, double Blue)
Parameters
TableID | A TableID returned by the CreateTable function |
BorderIndex |
0 = All borders 1 = Left 2 = Top 3 = Right 4 = Bottom |
Red | The red component of the color, a value from 0 to 1 |
Green | The green component of the color, a value from 0 to 1 |
Blue | The blue component of the color, a value from 0 to 1 |