Our merge rules require a "NewLine" if we programatically append "Environment.NewLine" It creates a new line. However, if we try to include \r\n to create the same effect in a string it does not work. For example:
form.FillField(TextField1, "line1\r\nline2") reads
line1\r\nline2
intead of
lin1
line2
Can you let me know what the appropriate string escape clause and new line format should be?
Sincerely,