"deleteRegister"

Deletes the specified tab.

Synopsis

setValue(string shape, "deleteRegister", int idx);

shape.deleteRegister(int idx);

Parameters

Parameter Description
shape Name of the object
idx Tab index, starting with 0

Description

Deletes the specified tab.

Example

The following example deletes the first tab.

main()
{
  TAB1.deleteRegister(0);
}

Assignment

Tab