WCNCKL: added length of smart template HLS (for wrapping)

WCNCKL: Set length of smart template HLS (for wrapping)
Moved ‘SplitText’ from vlnSvgPageHelper so that it can be accessible from DisplayText (Volian.Controls.Library) and VlnSvgPageHelper (print)
Calvert: use item’s format to determine if change id tab should be visible rather than top folder (top folder was used when user was prompted to enter change id for session).
WCNCKL: use ‘SplitText’ to handle split/wrap of HLS checklist text
This commit is contained in:
2014-09-09 13:10:34 +00:00
parent d6aae18a46
commit aa264a4e5d
8 changed files with 155 additions and 10 deletions

View File

@@ -1044,6 +1044,7 @@ public struct Print
public string ForeColor; // Doesn't exist in old format - See StepLayoutData
public string BackColor; // Doesn't exist in old format - See StepLayoutData
public string PosAdjust;
public string HLSLength; // added for wolf creek checklist to define max string len of HLS (checklist steps)
public string Justify; // added for wolf creek checklist procedures.
}
[Serializable]
@@ -5408,6 +5409,7 @@ namespace fmtxml
private string StepPartPrintForeColor(Step stp) { return stp.StepPrintData.ForeColor; }
private string StepPartPrintBackColor(Step stp) { return stp.StepPrintData.BackColor; }
private string StepPartPrintPosAdjust(Step stp) { return stp.StepPrintData.PosAdjust; }
private string StepPartPrintHLSLength(Step stp) { return stp.StepPrintData.HLSLength; }
private string StepPartTabIdentEdit(Step stp) { return stp.TabData.IdentEdit; }
private string StepPartTabIdent(Step stp) { return stp.TabData.Ident; }
@@ -5627,6 +5629,8 @@ namespace fmtxml
if (CheckInheritedStr(new StepPartStr(StepPartPrintForeColor), step, dicParents)) step.StepPrintData.ForeColor = null;
if (CheckInheritedStr(new StepPartStr(StepPartPrintBackColor), step, dicParents)) step.StepPrintData.BackColor = null;
if (CheckInheritedStr(new StepPartStr(StepPartPrintPosAdjust), step, dicParents)) step.StepPrintData.PosAdjust = NullString;
if (CheckInheritedStr(new StepPartStr(StepPartPrintHLSLength), step, dicParents)) step.StepPrintData.HLSLength = NullString;
// substructure - TabData
//RHM/KBR added this - not sure: if (mstp.TabData.IdentEdit == sstp.TabData.IdentEdit) subFmt.StepData[i].TabData.IdentEdit = null;

View File

@@ -136,6 +136,8 @@ namespace fmtxml
fmtdata.StepData[30].StepLayoutData.AlignWithParentTab = "True";
fmtdata.StepData[2].StepPrintData.Justify = "Center";
fmtdata.StepData[9].StepPrintData.Justify = "Center";
fmtdata.StepData[2].StepPrintData.HLSLength = "66";
fmtdata.StepData[9].StepPrintData.HLSLength = "66";
fmtdata.ROData.UpRoAftrDash = "False";
fmtdata.ROData.UpRoImmAftrDashSpace = "True";
}

Binary file not shown.