QR DELETE COLUMN

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 2003


QR DELETE COLUMN (area; colNumber)

ParameterTypeDescription
areaLongintReference of the area
colNumberLongintColumn number

Description

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.

Example

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

See Also

QR INSERT COLUMN.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next