"connectHelpGrid0to1Directly" - obsolete
Connects a bool-DP and the Help-Grid. (obsolete from version 3.5 up).
Synopsis
setValue(string shape, "connectHelpGrid0to1Directly", int n,
string dp);
shape.connectHelpGrid0to1Directly(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 FALSE to TRUE, 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.connectHelpGrid0to1Directly(0, "Bool1.:_original.._value");
...
}
Assignment
Trend