Class Measurement
Wraps a Measurement.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public class Measurement : JTObject
Constructors
Measurement(Decimal)
Initializes a new instance of the Measurement class.
Declaration
public Measurement(decimal value_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Decimal | value_ | The measure. |
Properties
Value
The measurement.
Declaration
public decimal Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Decimal |
Methods
ToString()
Simply calls through to the Value property.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| System.String | The measure's Value as a string. |
Overrides
System.Object.ToString()