tbf/SchematicDrawing/IDrawingItemWithMeasuredVal.cs
2021-06-18 15:35:46 +02:00

18 lines
420 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; }
}
}