You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
677 B
C#
32 lines
677 B
C#
namespace OPCDA.NET
|
|
{
|
|
using System;
|
|
|
|
public class DataBindFormat
|
|
{
|
|
public double add;
|
|
public string format;
|
|
public double multiply;
|
|
public Type reqType;
|
|
public bool showNonGoodQuality;
|
|
public bool showNoValueOnBadQuality;
|
|
|
|
public DataBindFormat()
|
|
{
|
|
this.format = null;
|
|
this.reqType = typeof(void);
|
|
this.add = 0.0;
|
|
this.multiply = 1.0;
|
|
}
|
|
|
|
public DataBindFormat(string fmt)
|
|
{
|
|
this.format = fmt;
|
|
this.reqType = typeof(void);
|
|
this.add = 0.0;
|
|
this.multiply = 1.0;
|
|
}
|
|
}
|
|
}
|
|
|