WCN OFN BCK Format improvement

uncomment rofst access from previous update
This commit is contained in:
2014-02-10 15:18:30 +00:00
parent 1dd420fb09
commit 3fff776046
2 changed files with 6 additions and 5 deletions

View File

@@ -2837,8 +2837,13 @@ namespace VEPROMS.CSLA.Library
{
_MyTab.BasicTab = isAlpha ? alpha : ordinal.ToString();
newtab = FormatStepData.TabData.IdentAltPrint.Substring(indxnewtab + 1);
if (newtab.Contains("{numeric}") || newtab.Contains("{LNK Step Num}"))
{
newtab = tbformat;
newtab = @"\ul " + newtab.Substring(0,newtab.IndexOf(":")+1) + @"\ulnone " + newtab.Substring(newtab.IndexOf(":")+1);
}
// also see if there is the 'pagelist' string in this tab:
if ((FormatStepData.TabData.Font.Style & E_Style.Underline) == E_Style.Underline)
else if ((FormatStepData.TabData.Font.Style & E_Style.Underline) == E_Style.Underline)
// the reason that the underline commands were not included in format file is that the '\' character
// is used as a separator and the following code will not impact other formats
HighLevelStepTabPageList = @"\ul " + FormatStepData.TabData.IdentAltPrint.Substring(0, indxnewtab).Trim() + @"\ulnone " + tbformat;