Difference between revisions of "Extensions.Measure.GetMeasurementStatus"

From emotive
Jump to navigation Jump to search
Line 1: Line 1:
[[Category:Measure]]
+
{{DISPLAYTITLE:'''GetMeasurementStatus '''}}[[Category:Measure]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | GetMeasurementStatus | Gets the status of a measurement | [[Term]] | [[Measure|OTX Measure extension]] | [[Measurement related terms]] | - | - }}
+
{{ClassificationActivity | GetMeasurementStatus | Gets the status of a measurement | [[Term]] | [[Extensions.Measure|OTX Measure extension]] | [[Measurement related terms]] | - | - }}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
Line 11: Line 11:
 
This term gets the status of a measurement. The status of the measurement reflects the situation of the generation of the measurement. The returned status is a ''String''
 
This term gets the status of a measurement. The status of the measurement reflects the situation of the generation of the measurement. The returned status is a ''String''
  
{{TermReturnValue| [[String]] | The status of a measurement. }}
+
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The status of a measurement. }}
  
 
== Properties ==
 
== Properties ==
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| Measurement | [[Measurement]] | [[Term]] | - | [1] | The measurement whose status is acquired.}}
+
{{TableRowPropertie1| Measurement | [[Extensions.Measure.Measurement|Measurement]] | [[Term]] | - | [1] | The measurement whose status is acquired.}}
 
|}
 
|}
  
Line 38: Line 38:
  
 
== See also ==
 
== See also ==
[[GetMeasurementTimestamp]] <br/>
+
[[Extensions.Measure.GetMeasurementTimestamp|GetMeasurementTimestamp]] <br/>
[[GetMeasurementQuantity]] <br/>
+
[[Extensions.Measure.GetMeasurementQuantity|GetMeasurementQuantity]] <br/>
[[GetMeasurementFloatValue]] <br/>
+
[[Extensions.Measure.GetMeasurementFloatValue|GetMeasurementFloatValue]] <br/>
[[IsValidMeasurement]]
+
[[Extensions.Measure.IsValidMeasurement|IsValidMeasurement]]

Revision as of 02:31, 16 February 2016

Classification

Name GetMeasurementStatus
Short Description Gets the status of a measurement
Class Term
Extension OTX Measure extension
Group Measurement related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm = Measure.GetMeasurementStatus(Measurement);

Description

This term gets the status of a measurement. The status of the measurement reflects the situation of the generation of the measurement. The returned status is a String

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
String The status of a measurement.

Properties

Name Data Type Class Default Cardinality Description
Measurement Measurement Term - [1] The measurement whose status is acquired.

OTL Examples

package Measure.DeviceSignature TestDocument
{
   DeviceServiceSignature Sin(in Float a, out Measure.Measurement OutValue);
}

public procedure GetMeasurementStatus()
{
   Float a = 14;
   Measure.Measurement Sin_Return;
   String Status;

   Measure.ExecuteDeviceService(TestDocument, Sin, {in a = a, out OutValue = Sin_Return}, false, false);
   Status = Measure.GetMeasurementStatus(Sin_Return);
}

See also

GetMeasurementTimestamp
GetMeasurementQuantity
GetMeasurementFloatValue
IsValidMeasurement