示例#1
0
 public void Set(PlotAttribute Other)
 {
     this.TraceParameter   = Other.TraceParameter;
     this.AveragingType    = Other.AveragingType;
     this.Type             = Other.Type;
     this.WindowWidth      = Other.WindowWidth;
     this.ModuloEnabled    = Other.ModuloEnabled;
     this.ModuloValue      = Other.ModuloValue;
     this.MinEnabled       = Other.MinEnabled;
     this.MinValue         = Other.MinValue;
     this.MaxEnabled       = Other.MaxEnabled;
     this.MaxValue         = Other.MaxValue;
     this.UseY2Axis        = Other.UseY2Axis;
     this.ShowPoints       = Other.ShowPoints;
     this.ShowLines        = Other.ShowLines;
     this.ScaleData        = Other.ScaleData;
     this.ScaleDataCommand = Other.ScaleDataCommand;
 }
示例#2
0
 public PlotAttribute(PlotAttribute Other)
 {
     this.Set(Other);
 }
示例#3
0
        public override void Run()
        {
            PlotAttribute pa = new PlotAttribute();

            pa.Show();
        }