F2021-053: BNPP Alarm – need ability to have super/sub scripts in the text of Alarm Tables (ROs)
This commit is contained in:
@@ -228,7 +228,8 @@ namespace VEPROMS.CSLA.Library
|
||||
Plackeep = 0x20000, // Do replace in PlaceKeepers
|
||||
InSecTitle = 0x40000,
|
||||
BeforeTrans = 0x80000, // Only do replace if the string occurs immediately before a transition.
|
||||
BeforeList = 0x100000 // C2021-045 Only if the text ends with a colon ":"
|
||||
BeforeList = 0x100000, // C2021-045 Only if the text ends with a colon ":"
|
||||
PageList = 0x200000 // F2021-053: Do replace words in page list
|
||||
}
|
||||
public enum E_ArrowKeys : uint
|
||||
{
|
||||
|
@@ -133,6 +133,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad<E_Justify>(ref _Justify, "@Justify");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _RepWords; // F2021-053: Do replace words in page list
|
||||
public bool RepWords
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _RepWords, "@RepWords");
|
||||
}
|
||||
}
|
||||
private LazyLoad<int?> _MaxWidth;
|
||||
public int? MaxWidth
|
||||
{
|
||||
|
Reference in New Issue
Block a user