Code cleanup – B2019-133 – continuation of bug fix for B2018-057 to replace non-breaking hyphen with a dash. This was done for procedure specific information but not for the folder and procedure set specific information logic. Was found during Barakah Alarm format development, but ended up not needing this logic for their current format.

C2019-043 Added UseDashGreaterLessThenForArrowsInROValue flag to convert “->” to the right arrow symbol and “<-“ to the left arrow symbol in RO return values
This commit is contained in:
2019-11-07 15:55:58 +00:00
parent d719712816
commit 5bac79bf8e
2 changed files with 13 additions and 3 deletions

View File

@@ -2398,6 +2398,15 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _UseTildaPoundCharsForSuperSubScriptInROValues, "@UseTildaPoundCharsForSuperSubScriptInROValues");
}
}
// C2019-043 will convert "->" to the right arrow symbol and "<-" to the left arrow symbol for RO return values
private LazyLoad<bool> _UseDashGreaterLessThenForArrowsInROValue;
public bool UseDashGreaterLessThenForArrowsInROValue
{
get
{
return LazyLoad(ref _UseDashGreaterLessThenForArrowsInROValue, "@UseDashGreaterLessThenForArrowsInROValue");
}
}
private LazyLoad<bool> _ConvertUnderscoreToUnderline;
public bool ConvertUnderscoreToUnderline
{