C2015-012: (Comanche Peak) Include asterisk and step designator in Top Continue Message for Continuous Action Steps.
This commit is contained in:
parent
a038fe06e9
commit
c98ea48e74
@ -1989,12 +1989,18 @@ namespace Volian.Print.Library
|
|||||||
{
|
{
|
||||||
vlnTab vt = vpo as vlnTab;
|
vlnTab vt = vpo as vlnTab;
|
||||||
string cltxt = vt.Text;
|
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
|
// replace C# representation of unicode character "\u25CF" which is hex
|
||||||
// with the rtf representation @"\u9679?"
|
// with the rtf representation @"\u9679?"
|
||||||
if (cltxt.Contains("\u25CF")) cltxt = cltxt.Replace("\u25CF", @"\u9679?"); // handle a bullet, if it isn't unicode yet
|
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));
|
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;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user