Click or drag to resize

PressurePrecision Property

Represents the range within which the measurement is correct, controlling how the ToString() method behaves.

Namespace: InnerDrive.Quantitative
Assembly: InnerDrive.Quantitative (in InnerDrive.Quantitative.dll) Version: 5.0.8475.0
Syntax
C#
[JsonIgnoreAttribute]
public int Precision { get; set; }

Property Value

Int32

Implements

IMeasurablePrecision
Remarks
Precision represents a power of 10, indicating the coarsest grain of precision that will be displayed. For example, a precision of 3 indicates values are displayed to the nearest 1,000; while a precision of -3 indicates values are displayed to the nearest 0.001.

A precision of MinValue indicates that the ToString() method should ignore the Precision property altogether.

See Also