Hi,
I've a CustomField class.
public class CustomField : MergeFieldI need to return a multiline string from GetResultFragment() function.
string result = string.Empty;result = "First Line";result += Convert.ToChar(11);result = "Second Line";DocumentFragment.CreateFromInline(new Span(result));But output is not as I've expected. Can GetResultFragment() return Paragraph or is there an other solution?
Regards.