Command PV INSERT COLUMNS

4D View

PV INSERT COLUMNS

version 6.8


PV INSERT COLUMNS (area; start; number)

ParameterTypeDescription
areaLongint4D View area
startLongintColumn before where new column(s) will be inserted
numberLongintNumber of columns

Description

The PV INSERT COLUMNS command inserts number column(s) in area starting at column number start. The column(s) will be inserted before the column defined by start.

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

Example

Insert a column before the first column (A) of the table, to shift the column area content to the right:

   PV INSERT COLUMNS (Area;1;1)

See Also

PV DELETE COLUMNS, PV INSERT ROWS.