tbf/SchematicDrawing/IDrawingItemWithMeasuredVal.cs

19 lines
457 B
C#

///
/// Copyright (c) 2020-2021 Sensus Slovensko a.s.
///
namespace SchematicDrawing
{
public interface IDrawingItemWithMeasuredVal : IDrawingItem
{
int MsrdX { get; set; }
int MsrdY { get; set; }
Orient MsrdOrient { get; set; }
string MsrdFormat { get; }
Common.Unit MsrdUnit { get; }
double MsrdValLimLo { get; }
double MsrdValLimHi { get; }
bool IsOffline { get; set; }
}
}