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