Esempio n. 1
0
 public override void SetDefault()
 {
     Min        = Mtblib.Tools.MtbTools.MISSINGVALUE;
     Max        = Mtblib.Tools.MtbTools.MISSINGVALUE;
     Label      = new AxLabel(Direction);
     Ticks      = new ContTick();
     Refes      = new Refe(Direction);
     LDisplay   = null;
     HDisplay   = null;
     SecScale   = new ContSecScale(Direction);
     GetCommand = DefaultCommand;
 }
Esempio n. 2
0
        public override object Clone()
        {
            ContTick tick = new ContTick();

            tick.NMajor     = this.NMajor;
            tick.NMinor     = this.NMinor;
            tick.Increament = this.Increament;
            tick.FontSize   = this.FontSize;
            tick.FontColor  = this.FontColor;
            tick.Bold       = this.Bold;
            tick.Italic     = this.Italic;
            tick.Underline  = this.Underline;
            tick.Angle      = this.Angle;
            tick.SetTicks(this.GetTicks());
            tick.SetLabels(this.GetLabels());
            return(tick);
        }
Esempio n. 3
0
 public override void SetDefault()
 {
     Variable = null;
     Min      = Mtblib.Tools.MtbTools.MISSINGVALUE;
     Max      = Mtblib.Tools.MtbTools.MISSINGVALUE;
     Label    = new AxLabel(Direction)
     {
         ScalePrimary = ScalePrimary.Secondary,
         Side         = 1
     };
     Ticks = new ContTick();
     Refes = new Refe(Direction)
     {
         Secondary = true
     };
     LDisplay   = null;
     HDisplay   = null;
     GetCommand = DefaultCommand;
 }