PV INSERT ROWS
version 6.8
PV INSERT ROWS (area; start; number)
Parameter | Type | Description | |
area | Longint | 4D View area | |
start | Longint | Row before which new row(s) will be inserted | |
number | Longint | Number 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