"scrollPercent"

When a trend reaches the maximum time, it will be scrolled by the specified amount (%).

Synopsis

setValue(string shape, "scrollPercent", int percent);

getValue(string shape, "scrollPercent", int percent);

shape.scrollPercent( int percent);

Parameters

Parameter Description
shape Name of the object
percent The amount (%) a trend is scrolled when the maximum time has been reached.

Description

When the trend reaches the maximum time, it will be scrolled by the specified amount (%).

Example

In the following example, the trend will be scrolled by 5 percent when the maximum time has been reached.

main()
{
  int scrolP = 5;
  TREND1.scrollPercent(scrolP);
}

Assignment

Trend