B2019-037 added format flag to allow use of ~ # characters as token characters for superscript and subscript in RO return values

This commit is contained in:
John Jenko 2019-04-17 17:07:14 +00:00
parent 70692e9d77
commit 0fccb2af79

View File

@ -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<bool> _UseTildaPoundCharsForSuperSubScriptInROValues;
public bool UseTildaPoundCharsForSuperSubScriptInROValues
{
get
{
return LazyLoad(ref _UseTildaPoundCharsForSuperSubScriptInROValues, "@UseTildaPoundCharsForSuperSubScriptInROValues");
}
}
private LazyLoad<bool> _ConvertUnderscoreToUnderline;
public bool ConvertUnderscoreToUnderline
{