From 9c5b3273baf83a7c911b944e59e1241e2f3b7c9e Mon Sep 17 00:00:00 2001 From: John Date: Tue, 20 Jun 2017 17:27:16 +0000 Subject: [PATCH] Mistakenly removed the RODefaults_graphicsprefix which is used in the DataLoader coding. --- PROMS/VEPROMS.CSLA.Library/Config/AssocConfig.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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")]