public bool Equals(NameView nv)
 {
     return((nv.autoHide == this.autoHide) &&
            (nv.autoHideSec == this.autoHideSec) &&
            (nv.bgColor == this.bgColor) &&
            (nv.color == this.color) &&
            (nv.enabled == this.enabled) &&
            (nv.inheritGlobal == this.inheritGlobal) &&
            (nv.paintBg == this.paintBg) &&
            (nv.position == this.position) &&
            (nv.size == this.size));
 }
 public void SaveTo(NameView nv)
 {
     nv.autoHide      = autoHide;
     nv.autoHideSec   = autoHideSec;
     nv.bgColor       = bgColor;
     nv.color         = color;
     nv.enabled       = enabled;
     nv.inheritGlobal = inheritGlobal;
     nv.paintBg       = paintBg;
     nv.position      = position;
     nv.size          = size;
 }