Added code to handle diamond1 format item
Added RNOWidthAdj flag for Braidwood
This commit is contained in:
parent
1b09d64a7f
commit
74886aa3b4
@ -2711,6 +2711,18 @@ namespace VEPROMS.CSLA.Library
|
||||
cltext = cltext == null ? tbformat.Remove(macroindx, 5) : cltext.Remove(macroindx, 5);
|
||||
cltext = cltext + " ";
|
||||
}
|
||||
macroindx = tbformat.IndexOf("{!diamond1}");
|
||||
if (macroindx > -1) //i found it
|
||||
{
|
||||
cltext = cltext == null ? tbformat.Remove(macroindx, 11) : cltext.Remove(macroindx, 11);
|
||||
cltext = cltext + " ";
|
||||
}
|
||||
macroindx = tbformat.IndexOf("{!diamond}");
|
||||
if (macroindx > -1) //i found it
|
||||
{
|
||||
cltext = cltext == null ? tbformat.Remove(macroindx, 10) : cltext.Remove(macroindx, 10);
|
||||
cltext = cltext + " ";
|
||||
}
|
||||
// "{Null}" was introduced so that inheritance in format files could differentiate between an
|
||||
// empty string, and null. And also, so that if a tab was null but it's parent had text in the
|
||||
// tab, don't inherit the parent's tab, use a null.
|
||||
|
@ -2695,6 +2695,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _RNOWidthAlt, "@RNOWidthAlt");
|
||||
}
|
||||
}
|
||||
private LazyLoad<string> _RNOWidthAdj;
|
||||
public string RNOWidthAdj
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _RNOWidthAdj, "@RNOWidthAdj");
|
||||
}
|
||||
}
|
||||
private LazyLoad<int?> _HLSWidthOVRD;
|
||||
public int? HLSWidthOVRD
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user