Command PV INSERT ROWS

4D View

PV INSERT ROWS

version 6.8


PV INSERT ROWS (area; start; number)

ParameterTypeDescription
areaLongint4D View area
startLongintRow before which new row(s) will be inserted
numberLongintNumber of rows

Description

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

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

Example

Insert a row before the first row (1) of the table, to shift the row area content toward the bottom:

   PV INSERT ROWS (Area;1;1)

See Also

PV DELETE ROWS, PV INSERT COLUMNS.