Beispiel #1
0
 public DisplayInfo(string name, string result, string format, GridModeType gridType, double minValue, double maxValue, string logTag)
 {
     Name     = name;
     Result   = result;
     Format   = format;
     GridType = gridType;
     MinValue = minValue;
     MaxValue = maxValue;
     LogTag   = logTag;
 }
Beispiel #2
0
 public DisplayInfo(int originalPosition, string name, string result, string format, UInt32 displayOrder, GridModeType gridType, double minValue, double maxValue, string logTag)
 {
     OriginalPosition = originalPosition;
     Name             = name;
     Result           = result;
     Format           = format;
     DisplayOrder     = displayOrder;
     GridType         = gridType;
     MinValue         = minValue;
     MaxValue         = maxValue;
     LogTag           = logTag;
 }