"curveTimeShape", "curveTimeShapeX"
The attribute "curveTimeShape" specifies what other shapes (primitive text or all other objects that have the property "text") should display the time as it is displayed in the legend. The attribute "curveTimeShapeX" is valid for the XY trend curve of the X part.
Synopsis
setValue(string shape, "curveTimeShape", string curve, string
shape);
getValue(string shape, "curveTimeShape", string curve, string
shape);
shape.curveTimeShape(string curve, string shape);
Parameter
Parameter | Description |
---|---|
shape | Object name |
curve | The curve |
shape | Name of the shape that should display the time as it is displayed in the legend |
Description
The attribute "curveTimeShape" specifies what other shapes (primitive text or all other objects that have the property "text") should display the time as it is displayed in the legend.
Example
The following example shows the time of the legend (of the curve1) in the text field TEXT_FIELD1.
main()
{
TREND1.curveTimeShape("curve1","TEXT_FIELD1");
string shap;
getValue("TREND1","curveTimeShape","curve1",shap);
DebugN("The time of the legend also shown",shap);
}
Assignment
Trend