Specifies how reporting merge blocks are handled when a document is loaded. Reporting merge blocks can be saved in a document either through special document targets represented through Document
Introduced: X14.
public ReportingMergeBlockFormat ReportingMergeBlockFormat { get; set; }
Public Property ReportingMergeBlockFormat() As ReportingMergeBlockFormat
Member | Description |
---|---|
Default | The document is loaded as it is. Reporting merge blocks are not converted. |
Document |
This member is not used, when a document is loaded. |
Sub |
If the document contains reporting merge blocks marked with document targets, these targets are converted to subtextparts. |
This example displays an easy way to use the 'TXText
TXTextControl.LoadSettings ls = new TXTextControl.LoadSettings();
ls.ReportingMergeBlockFormat = TXTextControl.ReportingMergeBlockFormat.SubTextParts;
Dim ls As TXTextControl.LoadSettings = New TXTextControl.LoadSettings()
ls.ReportingMergeBlockFormat = TXTextControl.ReportingMergeBlockFormat.SubTextParts