CALBCK improvements
This commit is contained in:
parent
135c3f76a0
commit
cc188ce98f
@ -152,6 +152,11 @@ namespace fmtxml
|
||||
fmtdata.StepData[6].WidthOverride = "490";
|
||||
fmtdata.StepData[7].WidthOverride = "490";
|
||||
fmtdata.StepData[24].WidthOverride = "490";
|
||||
fmtdata.StepData[2].UseOldTemplate = "True";
|
||||
fmtdata.StepData[6].UseOldTemplate = "True";
|
||||
fmtdata.StepData[7].UseOldTemplate = "True";
|
||||
fmtdata.StepData[9].UseOldTemplate = "True";
|
||||
fmtdata.StepData[40].StepLayoutData.AlignWithParentTab = "True";
|
||||
}
|
||||
private void AddFNPfmt(ref FormatData fmtdata)
|
||||
{
|
||||
|
@ -906,6 +906,7 @@ public struct Step
|
||||
public string UnderlineAfterDashSpace;
|
||||
public string SpaceIn; // NoSpaceInNoteOrCaution
|
||||
public string PageBreakOnStep; // PageBreakOnHighLevelStep, PageBreakOnCautions, PageBreakOnNotes
|
||||
public string UseOldTemplate;
|
||||
public string AlignNullTabWSectHead;
|
||||
public string TextSubFollowsTextStyle;
|
||||
public string CautionOrNoteSubstepIndent;
|
||||
@ -5303,6 +5304,7 @@ namespace fmtxml
|
||||
private string StepPartUnderlineAfterDashSpace(Step stp) { return stp.UnderlineAfterDashSpace; }
|
||||
private string StepPartSpaceIn(Step stp) { return stp.SpaceIn; }
|
||||
private string StepPartPageBreakOnStep(Step stp) { return stp.PageBreakOnStep; }
|
||||
private string StepPartUseOldTemplate(Step stp) { return stp.UseOldTemplate; }
|
||||
private string StepPartAlignNullTabWSectHead(Step stp) { return stp.AlignNullTabWSectHead; }
|
||||
private string StepPartTextSubFollowsTextStyle(Step stp) { return stp.TextSubFollowsTextStyle; }
|
||||
private string StepPartTreatAsSequential(Step stp) { return stp.TreatAsSequential; }
|
||||
@ -5551,6 +5553,7 @@ namespace fmtxml
|
||||
if (CheckInheritedStr(new StepPartStr(StepPartUnderlineAfterDashSpace), step, dicParents)) step.UnderlineAfterDashSpace = null;
|
||||
if (CheckInheritedStr(new StepPartStr(StepPartSpaceIn), step, dicParents)) step.SpaceIn = null;
|
||||
if (CheckInheritedStr(new StepPartStr(StepPartPageBreakOnStep), step, dicParents)) step.PageBreakOnStep = null;
|
||||
if (CheckInheritedStr(new StepPartStr(StepPartUseOldTemplate), step, dicParents)) step.UseOldTemplate = null;
|
||||
if (CheckInheritedStr(new StepPartStr(StepPartAlignNullTabWSectHead), step, dicParents)) step.AlignNullTabWSectHead = null;
|
||||
if (CheckInheritedStr(new StepPartStr(StepPartTextSubFollowsTextStyle), step, dicParents)) step.TextSubFollowsTextStyle = null;
|
||||
if (CheckInheritedStr(new StepPartStr(StepPartTreatAsSequential), step, dicParents)) step.TreatAsSequential = null;
|
||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user