"connectHelpGridDirectly" - obsolete

Creates a direct connection between a bool-DP and the drawing grid (obsolete from version 3.5 up).

Synopsis

set Value(string shape, "connectHelpGridDirectly", int n, string dp);

shape.connectHelpGridDirectly(int n, string dp);

Parameters

Parameter Description
shape Name of the object
n Number of curve display range
dp Name of data point

Description

This attribute connects the (boolean) value of a data point and the drawing grid. If the bool changes in any way, a corresponding grid line is added to the selected trend display area.

Example

The following example connects the trend and the DP value "Bool1.".

main()
{
  shape tr=getShape("trend1");
  ...
  tr.connectHelpGridDirectly(0, "Bool1.:_original.._value");
  ...
}

Assignment

Trend