We have a scenario where we receive some data in upper case. I would like to convert that to Title Case in the mail merge process by using two switches - \* Lower \* Caps
In my tests the first switch seems to be ignored and doing a Caps on upper case doesn't do anything.
Is this possible?
Update: I found a thread regarding using the MergeField event. That could be an option. How can I extract the switches from the MergeFieldEventArgs?
Update2: The node text below contains the switches. are there alternate/better ways to handle this.
Run node = e.Field.Start.NextSibling as Run;
Console.WriteLine(node.Text);