"deleteLineN";

Deletes a specific row.

Synopsis

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

shape.deleteLineN(int n);

Parameters

Parameter Description
shape Name of the object
n Row index, starting at 0

Description

Deletes row "n" from a table.

Example

Deletes the fourth row from the table.

 main()
{
  table.deleteLineN(3);
}

Assignment

Table