Mistakenly removed the RODefaults_graphicsprefix which is used in the DataLoader coding.

This commit is contained in:
John Jenko 2017-06-20 17:27:16 +00:00
parent d20ec450ce
commit 9c5b3273ba

View File

@ -73,6 +73,22 @@ namespace VEPROMS.CSLA.Library
OnPropertyChanged("RODefaults_setpointprefix"); 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 #endregion
#region ROUpdate #region ROUpdate
[Category("RO Update")] [Category("RO Update")]