"deleteAllLines"

Deletes all the rows in a table.

Synopsis

setValue(string shape, "deleteAllLines");

shape.deleteAllLines();

Parameters

Parameter Description
shape Name of the object

Description

Deletes all the rows in a table.

Example

Deletes all the rows from "table123".

 main()
{
  TABLE1.deleteAllLines();
}

Assignment

Table