This commit is contained in:
Kathy Ruffing 2011-09-22 11:51:57 +00:00
parent c67def5eb0
commit 87b06744c0

View File

@ -855,7 +855,9 @@ namespace VEPROMS.CSLA.Library
{ {
get get
{ {
if (((MyContent.Type / 10000) == 2) && ((((int)MyContent.Type) % 10000) == 1)) return true; if ((MyContent.Type / 10000) != 2) return false;
string tabstr = FormatStepData.TabData.IdentPrint;
if (tabstr.Contains("{seq}")) return true;
return false; return false;
} }
} }
@ -2083,7 +2085,6 @@ namespace VEPROMS.CSLA.Library
if (MyPrevious != null && FormatStepData.Sep != null && FormatStepData.Sep != "{Null}") if (MyPrevious != null && FormatStepData.Sep != null && FormatStepData.Sep != "{Null}")
{ {
if (_MyHeader == null) _MyHeader = new MetaTag(FormatStepData.TabData.Font); if (_MyHeader == null) _MyHeader = new MetaTag(FormatStepData.TabData.Font);
_MyHeader.Text = FormatStepData.Sep; _MyHeader.Text = FormatStepData.Sep;
_MyHeader.CleanText = StripRtfFormatting(_MyHeader.Text); _MyHeader.CleanText = StripRtfFormatting(_MyHeader.Text);
_MyHeader.Justify = ContentAlignment.MiddleCenter; _MyHeader.Justify = ContentAlignment.MiddleCenter;