Added CapSPIfLastLower=True for Catawba and McGuire

Added CapROIfLastLower=False for Catawba and McGuire
Added CapSPIfLastLower for Catawba and McGuire so that only setpoint ROs are uppercased if the surounding text is uppercase.
This commit is contained in:
Rich
2014-01-15 19:29:26 +00:00
parent 3ddc7dfd41
commit 75abd14dd4
6 changed files with 31 additions and 6 deletions

View File

@@ -5419,6 +5419,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _CapRoIfLastLower, "@CapRoIfLastLower");
}
}
private LazyLoad<bool> _CapSPIfLastLower;
public bool CapSPIfLastLower
{
get
{
return LazyLoad(ref _CapSPIfLastLower, "@CapSPIfLastLower");
}
}
private LazyLoad<bool> _UpRoIfPrevUpper;
public bool UpRoIfPrevUpper
{