Hello
I am using version 1.01.33
I am trying to give value to a bookmark with a text that contains line breaks
Bmk.PlainText := 'Line 1'+#10#13+'Line2';
The expected result is
Line 1
Line2
but i get
Line 1 Line2
What am I doing wrong?
Thanks in advance
How can I insert a text with line breaks in a bookmark?
Re: How can I insert a text with line breaks in a bookmark?
Hello
Use InsertFileText of the Paragraph the bookmark is in.
Use InsertFileText of the Paragraph the bookmark is in.
Lars Arvidsson, Axolot Data
Re: How can I insert a text with line breaks in a bookmark?
Thanks for your reply.