This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v20 R7
QR DELETE COLUMN
|
QR DELETE COLUMN ( area ; colNumber ) | ||||||||
Parameter | Type | Description | ||||||
area | Longint |
![]() |
Reference of the area | |||||
colNumber | Longint |
![]() |
Column number | |||||
The QR DELETE COLUMN command deletes the column in area whose number was passed in colNumber. This command does not apply to cross-table reports.
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.
The following example makes sure the report is a list report and deletes the third column:
If(QR Get report kind(MyArea)=qr list report)
QR DELETE COLUMN(MyArea;3)
End if
Product: 4D
Theme: Quick Report
Number:
749
Created: 4D 2003
4D Language Reference ( 4D v20 R7)