4D v13.4

QR GET BORDERS

Home

 
4D v13.4
QR GET BORDERS

QR GET BORDERS 


 

QR GET BORDERS ( area ; column ; row ; border ; row | level {; color} ) 
Parameter Type   Description
area  Longint in Reference of the area
column  Longint in Column number
row  Longint in Row number
border  Longint in
row | level   Longint in Line thickness
color  Longint in Border color

The QR GET BORDERS command allows you to retrieve the border style for a border of a given cell.

area is the reference of the Quick Report area.

column is the column number of the cell.

row designates the row number of the cell. You can either:

  • pass a positive integer value to designate the corresponding subtotal (break) level that is affected.
  • pass one of the following constants of the QR Rows for Properties theme:
    Constant Type Value Comment
    qr detail Longint -2 Detail area of report
    qr grand total Longint -3 Grand total area
    qr title Longint -1 Title of report

border is the value that indicates which cell border is affected. Pass one of the constants from the QR Borders theme:

Constant Type Value Comment
qr bottom border Longint 8 Bottom border
qr inside horizontal border Longint 32 Inside horizontal border
qr inside vertical border Longint 16 Inside vertical border
qr left border Longint 1 Left border
qr right border Longint 4 Right border
qr top border Longint 2 Top border

Note: Unlike the command QR SET BORDERS, QR GET BORDERS does not accept a cumulative value. You must test all the parameters separately to have an overall view of the cell border.

line is the thickness of the line:

  • 0 indicates no line
  • 1 indicates a thickness of 1/4 point
  • 2 indicates a thickness of 1/2 point
  • 3 indicates a thickness of 1 point
  • 4 indicates a thickness of 2 points.

color is the color of the line; it returns the value of the color applied to the line segment.

If you pass an invalid area number, the error -9850 will be generated.
If you pass an invalid column number, the error -9852 will be generated.
If you pass an invalid row number, the error -9853 will be generated.
If you pass an invalid border parameter, the error -9854 will be generated.

 
PROPERTIES 

Product: 4D
Theme: Quick Report
Number: 798

This command modifies the Error system variable

 
INDEX

Alphabetical list of commands

 
HISTORY 

Created: 4D 2003

 
SEE ALSO 

QR SET BORDERS