"textItemId"

Sets the text for a specific item of a cascade.

Synopsis

setValue(string shape, "textItemId", string item, string text);

shape.textItemId(string item, string text);

Parameters

Parameter Description
shape Name of the object
item ID of the item
text New text for the item

Description

The attribute "textItemId" sets a text for the specified item of a cascade.

Example

In the example below, the text "Select" is set for the element with the ID number 4.

main()
{
  string itR = "4";
  this.textItemId(itR,"Select");
}

Assignment

Cascade