Class Waveform
Represents a waveform.
public class Waveform : IWaveformWithUnits, IWaveform, IHasKey- Inheritance
- 
      
      Waveform
- Implements
- Derived
- Inherited Members
Constructors
Waveform(string, DateTime?, IEnumerable<Point>, string, string)
Initializes a new instance of the Waveform class.
public Waveform(string key, DateTime? startTime, IEnumerable<Point> points = null, string xUnit = null, string yUnit = null)Parameters
- keystring
- Key of the waveform. 
- startTimeDateTime?
- Start time of waveform. Can be null. 
- pointsIEnumerable<Point>
- Points of waveform. Can be null. 
- xUnitstring
- The unit for the x-direction. 
- yUnitstring
- The unit for the y-direction. 
Exceptions
- ArgumentNullException
- Thrown when - keyis null.
Properties
Key
Gets the key of the waveform.
public string Key { get; }Property Value
Points
Gets the points of the waveform.
public IPointCollection Points { get; }Property Value
StartTime
Gets the start time.
public DateTime? StartTime { get; }Property Value
XUnit
Gets the x unit.
public virtual string XUnit { get; }Property Value
YUnit
Gets the y unit.
public virtual string YUnit { get; }