QR SET TEXT PROPERTY
QR SET TEXT PROPERTY ( area ; colNum ; rowNum ; property ; value )
Parameter | Type | Description | |
---|---|---|---|
area | Integer | → | Reference of the area |
colNum | Integer | → | Column number |
rowNum | Integer | → | Row number |
property | Integer | → | Property number |
value | Integer, Text | → | Value for the selected property |
This command is not thread-safe, it cannot be used in preemptive code.
Description
The QR SET TEXT PROPERTY command sets the text attributes for the cell determined by colNum and rowNum.
area is the reference of the Quick Report area.
colNum is the number of the cell column.
rowNum is the reference of the cell row. You can pass either:
- a positive value designating the corresponding subtotal (break) level,
- one of the constants from the QR Rows for Properties theme:
| Constant | Type | Value | Comment |
| -------------- | ------- | ----- | --------------------- |
| qr detail | Longint | -2 | Detail area of report |
| qr footer | Longint | -5 | Page footer |
| qr grand total | Longint | -3 | Grand total area |
| qr header | Longint | -4 | Page header |
| qr title | Longint | -1 | Title of report |
Note: When passing -4 or -5 as rowNum, you still need to pass a column number in colNum, even if it is not used.
Note: In cross-table mode, the principle is similar except for the row values, which are always positive.
property is the value of the text attribute to assign. You can use the constants of the QR Text Properties theme, and the following values can be set:
Constant | Type | Value | Comment |
---|---|---|---|
_o_qr font | Longint | 1 | Obsolete since 4D v14R3 (use qr font name) |
qr alternate background color | Longint | 9 | Alternate background color number |
qr background color | Longint | 8 | Background color number |
qr bold | Longint | 3 | Bold style attribute (0 or 1) |
qr font name | Longint | 10 | Name of font as returned for example by the FONT LIST command |
qr font size | Longint | 2 | Font size expressed in points (9 to 255) |
qr italic | Longint | 4 | Italic style attribute (0 or 1) |
qr justification | Longint | 7 | Justification attribute (0 for default, 1 for left, 2 for center or 3 for right) |
qr text color | Longint | 6 | Color number attribute (Longint) |
qr underline | Longint | 5 | Underline style attribute (0 or 1) |
If you pass an invalid area number, the error -9850 will be generated.
If you pass an invalid colNum number, the error -9852 will be generated.
If you pass an invalid rowNum number, the error -9853 will be generated.
If you pass an invalid property number, the error -9854 will be generated.
Example
This method defines several attributes of the first column’s title:
//Assigns the Times font:
QR SET TEXT PROPERTY(qr_area;1;-1;qr font name;"Times")
//Assigns 10-point font size:
QR SET TEXT PROPERTY(qr_area;1;-1;qr font size;10)
//Assigns the bold attribute:
QR SET TEXT PROPERTY(qr_area;1;-1;qr bold;1)
//Assigns the italic attribute:
QR SET TEXT PROPERTY(qr_area;1;-1;qr italic;1)
//Assigns the underline attribute:
QR SET TEXT PROPERTY(qr_area;1;-1;qr underline;1)
//Assigns the light green color:
QR SET TEXT PROPERTY(qr_area;1;-1;qr text color;0x0000FF00)