"insertRegister"

Inserts a tab at the defined position.

Synopsis

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

shape.insertRegister(int idx);

Parameters

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

Description

Inserts a tab at the defined position. In this way, you can insert a tab between the existing tabs.

Example

The following example inserts a tab at the position 0 (first tab).

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

Assignment

Tab