C2022-021: resolve greater/less than or equal & plus/minus to symbols in ROs

C2022-021: Barakah resolve greater/less than or equal & plus/minus to symbols in ROs
This commit is contained in:
2022-11-02 14:37:49 +00:00
parent 2f4b33b621
commit 64e52f5f68
8 changed files with 17 additions and 0 deletions

View File

@@ -2707,6 +2707,15 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _UseTildaPoundCharsForSuperSubScriptInROValues, "@UseTildaPoundCharsForSuperSubScriptInROValues");
}
}
// C2022-021 will convert ">=" to the greater than or equal symbol, "<=" to the less than or equal symbol and plus/minus for RO return values
private LazyLoad<bool> _ConvertGTELTEPMinROValue;
public bool ConvertGTELTEPMinROValue
{
get
{
return LazyLoad(ref _ConvertGTELTEPMinROValue, "@ConvertGTELTEPMinROValue");
}
}
// 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