From c98ea48e744e5cff8584c567782df574bd31af57 Mon Sep 17 00:00:00 2001 From: Kathy Date: Tue, 23 Jun 2015 13:07:57 +0000 Subject: [PATCH] C2015-012: (Comanche Peak) Include asterisk and step designator in Top Continue Message for Continuous Action Steps. --- PROMS/Volian.Print.Library/vlnParagraph.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index e480691b..76a27c7e 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -1989,12 +1989,18 @@ namespace Volian.Print.Library { vlnTab vt = vpo as vlnTab; string cltxt = vt.Text; - cltxt = cltxt.Replace("*", " "); // the customer did not want the '*' + // Originally the Comache Peak customer did not want the '*'. As of 6/22/15, CP wants the asterisk in continue msg + ///cltxt = cltxt.Replace("*", " "); // replace C# representation of unicode character "\u25CF" which is hex // with the rtf representation @"\u9679?" if (cltxt.Contains("\u25CF")) cltxt = cltxt.Replace("\u25CF", @"\u9679?"); // handle a bullet, if it isn't unicode yet MyPageHelper.TopMessageRs.Add(new vlnText(cb, this, cltxt, cltxt, vt.XOffset, yTopMargin, vt.MyFont)); } + else if (vpo is vlnText) // As of 6/22/15, CP wants the step designator in the continue message also. + { + vpo.YOffset = yTopMargin; + MyPageHelper.TopMessageRs.Add(vpo as vlnText); + } } } return false;