"insertLineN"

Inserts an empty row after a specified row.

Synopsis

setValue(string shape, "insertLineN", int n);

shape.insertLineN(int n);

Parameters

Parameter Description
shape Name of the object
n Index of the new row, starting at 0

Description

Inserts an empty row in a table at position "n".

Example

The following example creates an empty row at row position 3 (after row 2 = with index 1).

 main()
{
  TABLE1.insertLineN(2);
}

Assignment

Table