diff --git a/PROMS/VEPROMS.CSLA.Library/Config/AssocConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/AssocConfig.cs index a109f629..bc0b72dc 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/AssocConfig.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/AssocConfig.cs @@ -73,6 +73,22 @@ namespace VEPROMS.CSLA.Library OnPropertyChanged("RODefaults_setpointprefix"); } } + [Category("Referenced Objects")] + [DisplayName("Default Graphics Prefix")] + [RefreshProperties(RefreshProperties.All)] + [Description("Graphics Prefix")] + public string RODefaults_graphicsprefix + { + get + { + string s = _Xp["RODefaults", "Graphics"];// get the saved value + return s; + } + set + { + _Xp["RODefaults", "Graphics"] = value; // save selected value + } + } #endregion #region ROUpdate [Category("RO Update")]