"deleteLinesN"
A specific number of rows are deleted, starting from an indexed row.
Synopsis
setValue(string shape, "deleteLinesN", int idx, int n);
shape.deleteLinesN(int idx, int n);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
idx | Index of the first row, starting at 0 |
n | Number of rows to be deleted |
Description
Starting with the row "idx", "n" further rows are deleted from the table.
Example
In the following example, rows three and four will be deleted.
main()
{
table.deleteLinesN(2, 2);
}
Assignment
Table