missing box

docstyle messages: {par} consistent with code
docstyle messages: {par} consistent with code & missing box
Handle par in endmessage
Allow for more end message text length
Handle asterisk hls draws when steps are compressed
For RNO separator, if aer column is further down on page than rno, print rno separator off of aer (was causing separator to print beyond margin)
This commit is contained in:
2015-03-16 13:54:18 +00:00
parent 06e71b1522
commit 086e73720c
15 changed files with 41 additions and 12 deletions

View File

@@ -771,7 +771,7 @@ namespace VEPROMS.CSLA.Library
{
get
{
return Message == null ? null : Message.Replace("\n","\r\n");
return Message == null ? null : Message.Replace("\n","\r\n").Replace(@"{par}","\r\n");
}
}
private LazyLoad<float?> _Margin;