tbf/SchematicDrawing/IDrawingItCmpntWithMeasuredVal.cs

13 lines
458 B
C#

///
/// Copyright (c) 2020-2021 Sensus Slovensko a.s.
///
namespace SchematicDrawing
{
public interface IDrawingItCmpntWithMeasuredVal : IDrawingItCmpnt
{
bool MsrmntAvailable { get; } /// true when there is a valid measurement
double MeasuredVal { get; } /// Measured value in default unit (not converted)
string AltString { get; } /// String to be displayed when MsrdFormat is an empty string or null
}
}