or
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.

<telerik:RadGridView Grid.Row="1" Grid.Column="0" x:Name="listView" EnableRowVirtualization="True" MouseDoubleClick="ListViewMouseDoubleClick" SelectionChanged="ListViewSelectionChanged" AutoGenerateColumns="False" AlternateRowBackground="#3d3D3d3d" Background="#99333333" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" ItemsSource="{Binding VirtualizedItems}" IsSynchronizedWithCurrentItem="True" DataLoadMode="Asynchronous" RowDetailsVisibilityMode="Collapsed" ShowGroupPanel="False" IsReadOnly="True" CanUserSortColumns="True" IsFilteringAllowed="False" CanUserDeleteRows="False" CanUserInsertRows="False" Width="870" />