"systemName"
Specifies from which system a data point should be shown using "dpTypeName".
Synopsis
setValue(string shape, "systemName", string sysName);
getValue(string shape, "systemName",string &sysName);
shape.systemName(string sysName);
Parameter
Parameter | Description |
---|---|
shape | Object name |
sysName | The system name e.g. "System1". |
Description
Specifies from which system a data point should be shown using "dpTypeName".
Example
In the following example the data point type "LABOR_ANALOG" of the system2 is shown in the DPTypeView
main()
{
this.systemName("System2");
this.dpTypeName("LABOR_ANALOG");
string retVaL;
getValue("","dpTypeName",retVaL);
DebugN("The data point type:",retVaL);
}
Assignment
DpTypeView