FNP Improvements

This commit is contained in:
2013-08-20 11:12:41 +00:00
parent 37269da828
commit 12ded2d9d9
4 changed files with 7 additions and 2 deletions

View File

@@ -732,6 +732,7 @@ public struct StepSectionLayout
public float SingleColumnRNOIndent;
public bool RNOWidthSameAsHighParent;
//end for VCSummer by jcb
/* Format flags moved to here.... */
public string Dev_Format;
public string EnhancedShortFormDev;
@@ -925,6 +926,7 @@ public struct Step
public string MixCautionsAndNotes;
public string NumberHighLevel; // NumberHighLevelRNO
public string OffsetTab;
public string AdjHighLevelTab; // Added for FNP - high level RNO
public string LeftJustifyBorderless; // LJBorderlessTable
public string StepNumIfOnlyOne; // NoStepNumIfOnlyOneStep
public string LJTabs;
@@ -5312,6 +5314,7 @@ namespace fmtxml
private string StepPartMixCautionsAndNotes(Step stp) { return stp.MixCautionsAndNotes; }
private string StepPartNumberHighLevel(Step stp) { return stp.NumberHighLevel; }
private string StepPartOffsetTab(Step stp) { return stp.OffsetTab; }
private string StepPartAdjHighLevelTab(Step stp) { return stp.AdjHighLevelTab; }
private string StepPartLeftJustifyBorderless(Step stp) { return stp.LeftJustifyBorderless; }
private string StepPartStepNumIfOnlyOne(Step stp) { return stp.StepNumIfOnlyOne; }
private string StepPartLJTabs(Step stp) { return stp.LJTabs; }
@@ -5551,6 +5554,7 @@ namespace fmtxml
if (CheckInheritedStr(new StepPartStr(StepPartMixCautionsAndNotes), step, dicParents)) step.MixCautionsAndNotes = null;
if (CheckInheritedStr(new StepPartStr(StepPartNumberHighLevel), step, dicParents)) step.NumberHighLevel = null;
if (CheckInheritedStr(new StepPartStr(StepPartOffsetTab), step, dicParents)) step.OffsetTab = null;
if (CheckInheritedStr(new StepPartStr(StepPartAdjHighLevelTab), step, dicParents)) step.AdjHighLevelTab = null;
if (CheckInheritedStr(new StepPartStr(StepPartLeftJustifyBorderless), step, dicParents)) step.LeftJustifyBorderless = null;
if (CheckInheritedStr(new StepPartStr(StepPartStepNumIfOnlyOne), step, dicParents)) step.StepNumIfOnlyOne = null;
if (CheckInheritedStr(new StepPartStr(StepPartLJTabs), step, dicParents)) step.LJTabs = null;