From 0fccb2af791a613020a840b892457296aab58a77 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 17 Apr 2019 17:07:14 +0000 Subject: [PATCH] B2019-037 added format flag to allow use of ~ # characters as token characters for superscript and subscript in RO return values --- PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index 5a2b1cf3..f855e3a0 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -2371,6 +2371,15 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _ConvertCaretToDelta, "@ConvertCaretToDelta"); } } + //B2019-037 throw back from DOS VE-PROMS, convert "~" to subscript and "#" to superscript in RO return values + private LazyLoad _UseTildaPoundCharsForSuperSubScriptInROValues; + public bool UseTildaPoundCharsForSuperSubScriptInROValues + { + get + { + return LazyLoad(ref _UseTildaPoundCharsForSuperSubScriptInROValues, "@UseTildaPoundCharsForSuperSubScriptInROValues"); + } + } private LazyLoad _ConvertUnderscoreToUnderline; public bool ConvertUnderscoreToUnderline {