Turned on Arial Font in NSP EOP and BCK formats

Renamed “Bullet” associated with format flag to “BulletOnContinuous”
renamed Bullet template to BulletOnContinuous and created a new Bullet template for use with TabData
This commit is contained in:
John Jenko 2013-04-18 15:57:18 +00:00
parent e8a518fdf9
commit 207403d318
3 changed files with 1034 additions and 163 deletions

File diff suppressed because it is too large Load Diff

View File

@ -919,7 +919,7 @@ public struct Step
public string StepNumIfOnlyOne; // NoStepNumIfOnlyOneStep
public string LJTabs;
public string NumberSubs; // DontNumberRNOSubs
public string Bullet; // BulletOnContinuous
public string BulletOnContinuous; // BulletOnContinuous
public string StepNumberForHighLevel; // NoStepNumberForHighLevelRNO
public string SameRowAsParent; // Caution1SameRowAsParent, Caution2SameRowAsParent
public string CheckoffSameAsParent; // RNOCheckoffSameAsParent
@ -3595,8 +3595,8 @@ namespace fmtxml
}
else if (i == 9) // Continuous
{
if (XtraFlags.BulletOnContinuous == "True") fmtdata.StepData[i].Bullet = "True";
else fmtdata.StepData[i].Bullet = "False";
if (XtraFlags.BulletOnContinuous == "True") fmtdata.StepData[i].BulletOnContinuous = "True";
else fmtdata.StepData[i].BulletOnContinuous = "False";
}
else if (i == 10) // AERTable
{
@ -5288,7 +5288,7 @@ namespace fmtxml
private string StepPartStepNumIfOnlyOne(Step stp) { return stp.StepNumIfOnlyOne; }
private string StepPartLJTabs(Step stp) { return stp.LJTabs; }
private string StepPartNumberSubs(Step stp) { return stp.NumberSubs; }
private string StepPartBullet(Step stp) { return stp.Bullet; }
private string StepPartBullet(Step stp) { return stp.BulletOnContinuous; }
private string StepPartStepNumberForHighLevel(Step stp) { return stp.StepNumberForHighLevel; }
private string StepPartSameRowAsParent(Step stp) { return stp.SameRowAsParent; }
private string StepPartCheckoffSameAsParent(Step stp) { return stp.CheckoffSameAsParent; }
@ -5527,7 +5527,7 @@ namespace fmtxml
if (CheckInheritedStr(new StepPartStr(StepPartStepNumIfOnlyOne), step, dicParents)) step.StepNumIfOnlyOne = null;
if (CheckInheritedStr(new StepPartStr(StepPartLJTabs), step, dicParents)) step.LJTabs = null;
if (CheckInheritedStr(new StepPartStr(StepPartNumberSubs), step, dicParents)) step.NumberSubs = null;
if (CheckInheritedStr(new StepPartStr(StepPartBullet), step, dicParents)) step.Bullet = null;
if (CheckInheritedStr(new StepPartStr(StepPartBullet), step, dicParents)) step.BulletOnContinuous = null;
if (CheckInheritedStr(new StepPartStr(StepPartStepNumberForHighLevel), step, dicParents)) step.StepNumberForHighLevel = null;
if (CheckInheritedStr(new StepPartStr(StepPartSameRowAsParent), step, dicParents)) step.SameRowAsParent = null;
if (CheckInheritedStr(new StepPartStr(StepPartCheckoffSameAsParent), step, dicParents)) step.CheckoffSameAsParent = null;

Binary file not shown.