I am able to print bold following instructions.
What I am having trouble with, is figuring out how to disable the bold so that the next item printed in the list does not carry the bold type. I do not want to use '|N' as this sets all formats back to Normal including alignment. How do I disable the bold after I am completed. I want the ability to do the following:
What I am looking for
Text1 Text2 Text3
What I've Tried
slipHeader &= vbCrLf & "1: " & ESC.Value & "|bC" & "test" & ESC.Value & "|N" & ESC.Value & "|bC" & " test2" & ESC.Value & "|N"
slipHeader &= vbCrLf & "2: " & ESC.Value & "|bC" & ESC.Value & "|cA" & "test" & ESC.Value & "|N" & ESC.Value & "|cA" & ESC.Value & "|bC" & " test2" & ESC.Value & "|N"
The example above is written in VB. My ultimate code is in C#.
Any Answer would suffice as I will translate to C#.