PV DELETE COLUMNS
version 6.8
PV DELETE COLUMNS (area; start; number)
Parameter | Type | Description | |
area | Longint | 4D View area | |
start | Longint | Starting column number | |
number | Longint | Number 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