"connectHelpGrid1to0Directly" - obsolete

Connects a bool-DP and the drawing grid (obsolete from version 3.5 up).

Synopsis

setValue(string shape, "connectHelpGrid1to0Directly", int n, string dp);

shape.connectHelpGrid1to0Directly(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 from TRUE to FALSE, a 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.connectHelpGrid1to0Directly(0, "Bool1.:_original.._value");
  ...
}

Assignment

Trend