Command PV DELETE COLUMNS

4D View

PV DELETE COLUMNS

version 6.8


PV DELETE COLUMNS (area; start; number)

ParameterTypeDescription
areaLongint4D View area
startLongintStarting column number
numberLongintNumber of columns

Description

The PV DELETE COLUMNS command deletes number column(s) in area starting at column number start.

Note: This command must not be called within a dynamic area. Otherwise, the error 86 is generated.

Example

Delete the first column (A) of the table, to shift the rest of the column area content to the left:

   PV DELETE COLUMNS  (Area;1;1)

See Also

PV DELETE ROWS, PV INSERT COLUMNS.