"registerCount";

Returns the number of tabs.

Synopsis

getValue(string shape, "registerCount", int &count);

Parameters

Parameter Description
shape Name of the object
count Number of tabs

Description

Returns the number of tabs.

Example

The following example returns the number of tabs.

main()
{
  int a;
  getValue("TAB1", "registerCount",a);
  DebugN("Number of tabs ",a);
}

Assignment

Tab