Added Warning with triple line box, Adjusted PSI Use Class text X-location

Support for Printing ‘[xx]’ text within an annotation by allowing for xlocation on dialog.
Triple Line Box around note or caution
This commit is contained in:
2016-08-04 10:35:26 +00:00
parent ac47021609
commit a2835ab73d
8 changed files with 535 additions and 420 deletions

View File

@@ -5481,6 +5481,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _Index, "@Index");
}
}
private LazyLoad<int?> _NumLines;
public int? NumLines // This was added to support 3 line box for VC Summer Alarms. It is only checked in 'double line' vlnbox.cs code!
{
get
{
return LazyLoad(ref _NumLines, "@NumLines");
}
}
private LazyLoad<float?> _Start;
public float? Start
{