RawRangeHigh Property
General info
Label |
Raw Range High |
Description |
The high end of the raw range of the input data. It will be used for rescaling if Conversion Mode is set to Rescaling. |
Data type |
Double |
Type |
Regular |
Code |
2454 |
Symbolic name |
MODEL_PROP_RAWRANGEHIGH |
Lua access code |
inmation.model.properties.RawRangeHigh |
Available since |
1.30.6.4266 |
- Parent properties
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 |
Examples
Read from or write to the RawRangeHigh
property.
-- Read from the RawRangeHigh
inmation.getvalue("<OBJECT FULL PATH>.RawRangeHigh")
-- Write to the RawRangeHigh
inmation.setvalue("<OBJECT FULL PATH>.RawRangeHigh", VALUE)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the RawRangeHigh
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.RawRangeHigh"));
// Write to the RawRangeHigh
Result result = sli.WriteValue(sc, new WriteItem(VALUE, "<OBJECT FULL PATH>.RawRangeHigh"));