"stop"

Defines if the table should scroll if new entries are added.

Synopsis

bool shape.stop();

Description

Defines if the table should automatically scroll if one ore more new entries are added to the table. This applies among others to the functions "appendLine", "appendLines", "updateLine" and "updateLines".

example

Prevents the table MY_TABLE from scrolling if new entries are added.

main()
{
  MY_TABLE.stop(true);
}

Assignment

Table