"progressString";

Returns the degree of progress as a string.

Synopsis

getValue(string shape, "progressString", string &percent);

Parameter

Parameter Description
shape Name of the object
percent The progress as a string

Description

Returns the degree of progress as a string.

Example

The following example returns the degree of progress as a string.

main(bool enter)
{
  string pStr;
  getValue("PROGRESS_BAR1","progressString", pStr);
  DebugN("Amount of progress",pStr);
}

Assignment

Progress bar