KpiLLL Property

General info

Label

Low Low Low Limit

Description

Limit value for the KPI which is used in KPI status calculations.

Data type

Double

Type

Regular

Code

922

Symbolic name

MODEL_PROP_KPILLL

Lua access code

syslib.model.properties.KpiLLL

Available since

1.0

Parent properties

KpiLimits

Attributes

Name Tooltip
PROP_CONFIGURABLE The property is configurable and can be changed with DataStudio and the various inmation APIs.
PROP_VISIBLE The property is visible in DataStudio and can be read by the inmation APIs.
PROP_NULLABLE This Property can have no value.

Capabilities

Name Description
DataHistorization The user will be able to switch time-series historization for this property on

Examples

Read from or write to the KpiLLL property.

  • Lua

  • C#

-- Read from the KpiLLL
syslib.getvalue("<OBJECT FULL PATH>.KpiLimits.KpiLLL")

-- Write to the KpiLLL
syslib.setvalue("<OBJECT FULL PATH>.KpiLimits.KpiLLL", VALUE)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);

// Read from the KpiLLL
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.KpiLimits.KpiLLL"));
// Write to the KpiLLL
Result result = sli.WriteValue(sc, new WriteItem(VALUE, "<OBJECT FULL PATH>.KpiLimits.KpiLLL"));