Command PV DELETE ROWS

4D View

PV DELETE ROWS

version 6.8


PV DELETE ROWS (area; start; number)

ParameterTypeDescription
areaLongint4D View area
startLongintStarting row number
numberLongintNumber of rows

Description

The PV DELETE ROWS command deletes number row(s) in area starting at row number start.

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

Example

Delete the first row (1) of the table, to shift the rest of the row area toward the top:

   PV DELETE ROWS (Area;1;1)

See Also

PV DELETE COLUMNS, PV INSERT ROWS.