Modified where RNOIdent value is obtained when it is blank for RNO type items

Added checks to Pagination FindPageBreak method
Modified vlnParagraph constructor to handle HLStpSeparatorString and HLRNOStpSeparatorString properties of plant format
This commit is contained in:
Rich
2014-01-23 04:46:19 +00:00
parent 429208fca5
commit a2e9b0b66a
3 changed files with 55 additions and 12 deletions

View File

@@ -2502,7 +2502,7 @@ namespace VEPROMS.CSLA.Library
{
string cltext = null;
int stepType = (int)(MyContent.Type % 10000);
string tbformat = IsInRNO ? FormatStepData.TabData.RNOIdentPrint : FormatStepData.TabData.IdentPrint;
string tbformat = IsInRNO ? FormatStepData.TabData.RNOIdentPrint == "" ? this.MyParent.FormatStepData.TabData.RNOIdentPrint : FormatStepData.TabData.RNOIdentPrint : FormatStepData.TabData.IdentPrint;
string tbformate = null; // need this for background documents, to generate tab for editing.
if (IsParagraph && !IsSequential)
{